-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "Qowala-browser-plugin",
"private": "true",
"dependencies": {
"chart.js": "^2.6.0",
"date-fns": "^1.29.0",
"node-vibrant": "^3.0.0-alpha.2",
"vue": "^2.3.3"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.5.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.9.0",
"jsdom": "11.0.0",
"jsdom-global": "3.0.2",
"mocha": "^3.4.2",
"mocha-webpack": "^0.7.0",
"node-sass": "^4.5.0",
"sass-loader": "^5.0.1",
"sinon-chrome": "^2.2.1",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"web-ext": "^1.9.1",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"build": "./node_modules/.bin/webpack",
"build:test": "./node_modules/.bin/webpack --config webpack.test.config.js",
"build:all": "npm run build && npm run build:test",
"lint": "./node_modules/.bin/eslint . --ext vue --ext js --ext html",
"test": "npm run lint && npm run build:test && ./node_modules/.bin/mocha build/tests/tests.js",
"start": "npm run build && ./node_modules/.bin/web-ext run -s build/dist --verbose",
"package": "./node_modules/.bin/web-ext build -s build/dist --verbose"
}
}