-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 KB
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
{
"private": true,
"version": "1.0.0",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"babel": {
"presets": [
"jaid"
]
},
"eslintConfig": {
"extends": "jaid"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"array-to-object-keys": "^1.0.21"
},
"devDependencies": {
"@absolunet/fsp": "^1.4.0",
"babel-jest": "^24.1.0",
"babel-preset-jaid": "^2.11.0",
"caniuse-lite": "^1.0.30000938",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"eslint": "^5.14.0",
"eslint-config-jaid": "^1.11.1",
"jest": "^24.1.0",
"opn-cli": "^4.0.0",
"pify": "^4.0.1",
"rimraf": "^2.6.3",
"webpack-cli": "^3.2.3",
"webpack-config-jaid": "^2.5.1"
},
"scripts": {
"clean": "rimraf dist/ test/**/dist/",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:dev": "webpack",
"test": "jest && npm run build:prod && cross-env MAIN=dist/package/production jest",
"test:dev": "npm run build:dev && jest",
"test:debug": "cross-env DEBUG=$(basename $PWD) node --inspect=9229 node_modules/jest/bin/jest.js --runInBand",
"release": "npm run clean && npm test && cross-env git tag v$npm_package_version && git push --tags && cross-env opn https://github.com/$npm_package_author_name/$(basename $PWD)/releases/new?tag=v$npm_package_version"
}
}