-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "nooboss",
"version": "0.1.0",
"description": "A Chrome extension that manages your Apps/Extensions",
"main": "webpack.config.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"prettier": "1.19.1",
"react": "^15.4.1",
"react-color": "^2.13.4",
"react-dom": "^15.4.1",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"styled-components": "^2.1.1",
"timeago-react": "^1.2.2",
"webpack": "^3.4.1",
"yamljs": "^0.3.0"
},
"scripts": {
"dev": "webpack -w",
"prod": "webpack --env.production",
"release": "npm run checkFormat && rm -rdf dist && npm run buildLocale && npm run prod && npm run zipDist",
"zipDist": "cd dist && zip -r -FS ../dist.zip *",
"test": "echo \"Error: no test specified\" && exit 1",
"checkFormat": "prettier --check '**/*.{js,tsx,ts,tsx}' '!dist/**'",
"format": "prettier --write '**/*.{js,tsx,ts,tsx}' '!dist/**'",
"buildLocale": "node ./scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AInoob/NooBoss.git"
},
"keywords": [
"NooBoss",
"Chrome",
"extension",
"manager",
"userscript",
"AInoob"
],
"author": "AInoob",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AInoob/NooBoss/issues"
},
"homepage": "https://github.com/AInoob/NooBoss#readme"
}