-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "help-es",
"version": "0.19.8",
"author": "Djalma Jr. <[email protected]>",
"description": "Helper functions for JavaScript language",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/djalmajr/help-es#README",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:djalmajr/help-es.git"
},
"bugs": {
"url": "https://github.com/djalmajr/help-es/issues"
},
"files": [
"lib"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"browser": "./lib/index.js",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./*": {
"types": "./lib/*.d.ts",
"browser": "./lib/*.js",
"import": "./lib/*.js",
"require": "./lib/*.cjs"
}
},
"scripts": {
"build-dev": "node bin/build.js watch=true",
"build-only": "node bin/build.js",
"build:types": "tsc --emitDeclarationOnly && cp src/types.d.ts lib && echo \"export * from './types';\" >> lib/index.d.ts",
"build": "node bin/build.js minify=true && npm run build:types",
"postversion": "git push && git push --tags && npm publish",
"prebuild": "npm run test",
"prettier": "prettier --write src/**/*.ts",
"test:prettier": "prettier --check src/**/*.ts",
"test:ts": "tsc --noEmit",
"test": "npm run test:ts && npm run test:prettier",
"version": "npm run prettier && npm run build"
},
"dependencies": {
"matercolors": "^2.3.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"esbuild": "^0.14.28",
"esbuild-plugin-glob": "^1.0.3",
"eslint": "^8.0.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"typescript": "^4.4.4"
}
}