-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.17 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": "run-snippets",
"description": "Chrome and Firefox exetension to run snippets with utilizing npm packages",
"version": "0.3.0",
"author": "re-fort",
"license": "MIT",
"scripts": {
"dev": "webpack --watch & webpack --watch --config webpack.snippets.config.babel.js",
"dev:demo": "cross-env NODE_ENV=demo npm run dev",
"build": "npm run clean && npm run build:app && npm run build:snippet",
"build:app": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:snippet": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.snippets.config.babel.js",
"clean": "rimraf ./dist",
"lint": "eslint src/**/*.js test/**/*.js",
"test": "npm run lint && cross-env NODE_ENV=test karma start test/karma.conf.js --single-run",
"zip:firefox": "cd dist && cross-zip ./ ../run-snippets.xpi",
"zip:chrome": "cd dist && cross-zip ./ ../run-snippets.zip"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"bulma": "^0.5.3",
"cross-env": "^5.0.5",
"cross-zip-cli": "^1.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-plugin-vue": "beta",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"mocha": "^4.0.1",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"power-assert": "^1.4.4",
"pug": "^2.0.0-rc.4",
"pug-html-loader": "^1.1.5",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sinon": "^4.0.1",
"vue": "^2.4.4",
"vue-bulma-message": "https://github.com/re-fort/message.git",
"vue-bulma-modal": "https://github.com/re-fort/modal.git",
"vue-bulma-notification": "^1.1.1",
"vue-bulma-tooltip": "^1.0.4",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"vue-test-utils": "^1.0.0-beta.1",
"webpack": "^3.6.0",
"webpack-espower-loader": "^1.0.2"
},
"dependencies": {}
}