-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"name": "cba",
"version": "1.0.0",
"description": "",
"main": "back.js",
"scripts": {
"test": "npm run build:webpack && (http-server tests/pages -s -p 3001 & mocha tests/mocha.js)",
"test:pages": "http-server tests/pages -s -p 3000",
"lint": "eslint .",
"posttest": "kill $(lsof -t -i:3001)",
"import:components": "cba-components --single-bundle --prod --output dist",
"build": "npm run clean && npm run build:webpack:prod && cd dist/;zip -r ../cba.zip .;cd ..",
"build:webpack": "npm run clean && npm run import:components && webpack --config webpack.config.js",
"build:webpack:watch": "npm run clean && npm run import:components && webpack --config webpack.config.js --watch",
"build:webpack:prod": "npm run clean && npm run import:components && PROD=1 webpack --config webpack.config.js",
"clean": "rm -r dist || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manvel/cba.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Manvel/cba/issues"
},
"homepage": "https://github.com/Manvel/cba#readme",
"dependencies": {
"cba-components": "^1.3.0",
"copy-webpack-plugin": "^11.0.0",
"csso": "^5.0.5",
"puppeteer": "^21.6.1",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.89.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"webpack-cli": "^5.1.4"
}
}