This repository has been archived by the owner on Jan 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.14 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
{
"name": "metal-router",
"version": "3.7.1",
"description": "Routing solution to link URLs to Metal.js components using HTML5 History API.",
"license": "BSD",
"repository": "metal/metal-router",
"engines": {
"node": ">=0.12.0",
"npm": ">=3.0.0"
},
"jsnext:main": "src/all/router.js",
"main": "lib/all/router.js",
"files": [
"build",
"lib",
"src"
],
"scripts": {
"build": "webpack",
"checkFormat": "npm run prettier -- --list-different",
"compile": "babel --presets env -d lib/ src/",
"demo": "npm run soy:demo && npm run build && npm run start",
"format": "npm run prettier -- --write",
"lint": "eslint '{src,test}/**/*.js'",
"precommit": "lint-staged",
"prepublish": "npm run soy && npm run compile",
"prettier": "prettier-eslint '{src,test}/**/*.js'",
"soy": "metalsoy",
"soy:demo": "metalsoy -s demos/**/*.soy -d demos/src --soyDeps src/**/*.soy",
"start": "superstatic . -c ./demos/server.json --port 8080",
"test": "karma start",
"test:saucelabs": "karma start karma-saucelabs.conf.js"
},
"keywords": [
"metal"
],
"dependencies": {
"metal": "^2.15.0",
"metal-component": "^2.15.0",
"metal-incremental-dom": "^2.15.0",
"metal-promise": "^3.0.0",
"metal-soy": "^2.15.0",
"metal-uri": "^3.1.0",
"senna": "^2.5.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"bootstrap": "^3.3.6",
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-liferay": "^2.0.18",
"karma": "^1.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "~1.1.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.6",
"lint-staged": "^6.0.0",
"metal-ajax": "^2.0.3",
"metal-karma-config": "^2.1.1",
"metal-tools-soy": "^4.0.0",
"mocha": "^4.0.1",
"prettier-eslint-cli": "^4.4.0",
"run-sequence": "^1.2.2",
"sinon": "^4.1.2",
"superstatic": "^5.0.1",
"webpack": "^3.10.0"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
}
}