-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
61
62
{
"name": "1pass",
"version": "0.5.0",
"license": "MIT",
"scripts": {
"commitmsg": "validate-commit-msg",
"serve": "browser-sync start -c bs-config.js",
"roll-dev": "cross-env NODE_ENV=Development rollup -c -w",
"build": "cross-env NODE_ENV=Production gulp",
"test": "cross-env NODE_ENV=Test mocha --compilers js:babel-core/register --harmony test/**.spec.js",
"release": "standard-version",
"gh-deploy": "bash ./gh-pages-deploy.sh"
},
"repository": "e-cloud/1pass",
"author": {
"name": "e-cloud",
"email": "[email protected]",
"url": "//e-cloud.github.io"
},
"private": true,
"dependencies": {
"dot": "^1.1.1",
"jssha": "^2.2.0",
"workbox-sw": "^3.0.0"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-exponentiation-operator": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.2.0",
"babel-register": "^6.26.0",
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"cross-env": "^5.1.0",
"del": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-friendly-formatter": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"husky": "^0.14.1",
"mocha": "^5.0.0",
"opn": "^5.0.0",
"replacestream": "^4.0.2",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-commonjs": "^9.0.2",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"run-sequence": "^2.2.1",
"standard-version": "^4.0.0",
"validate-commit-msg": "^2.11.1",
"workbox-build": "^3.0.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 4.0.0"
}
}