-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
{
"name": "firastar",
"version": "0.1.0",
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-jest": "^26.3.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest",
"pack:chrome": "cd dist && crx pack -p ./key.pem -o ./firastar-chrome-extension.crx",
"lint": "eslint \"src/**/*.{js,json}\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@firastar/firastar-js": "^0.1.2",
"@webcomponents/custom-elements": "^1.4.2",
"crx": "^5.0.1",
"jquery": "^3.5.1"
},
"license": "MIT"
}