forked from shower/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.55 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "shower-core",
"description": "Core for Shower HTML presentation engine",
"version": "2.1.0",
"author": {
"name": "Vadim Makeev",
"url": "http://pepelsbey.net/"
},
"maintainers": [
{
"name": "Denis Hananein",
"email": "[email protected]",
"github-username": "zloylos",
"role": "General architecture"
},
{
"name": "Vadim Makeev",
"email": "[email protected]",
"github-username": "pepelsbey",
"role": "Author, idea, tests"
}
],
"homepage": "https://github.com/shower/core",
"repository": "shower/core",
"bugs": "http://github.com/shower/shower/issues",
"license": "MIT",
"keywords": [
"shower",
"presentation",
"core"
],
"main": "lib",
"files": [
"dist/shower.js"
],
"dependencies": {
"shim-keyboard-event-key": "^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"chai-dom": "^1.5.0",
"chromedriver": "^2.30.1",
"eclint": "^2.2.0",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.6.1",
"husky": "^0.14.2",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"nightwatch": "^0.9.16",
"rollup": "^0.52.2",
"rollup-plugin-node-resolve": "^3.0.0",
"serve": "^6.0.2"
},
"config": {
"dotfiles": ".editorconfig **/.eslintrc.yml .gitignore .travis.yml",
"js": "*.js lib test",
"port": "8080"
},
"scripts": {
"build": "rollup --config",
"prepublish": "npm run build",
"precommit": "lint-staged",
"fix:ec": "eclint fix && eclint fix $npm_package_config_dotfiles",
"fix:js": "eslint $npm_package_config_js --fix",
"fix": "npm run fix:ec && npm run fix:js",
"lint:ec": "eclint check && eclint check $npm_package_config_dotfiles",
"lint:js": "eslint $npm_package_config_js",
"lint": "npm run lint:ec && npm run lint:js",
"serve": "serve dist --port $npm_package_config_port --cache 0",
"test:unit": "mocha test/unit --require test/unit-harness",
"test:local": "npm run build && nightwatch --env local",
"test:sauce": "npm run build && nightwatch --env chrome,firefox,safari,edge",
"test": "npm run lint && npm run test:unit && npm run test:sauce"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*": [
"eclint fix",
"git add"
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}