-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "trouter",
"version": "0.0.5",
"description": "Client-side router with a tree of handlers.",
"main": "dist/trouter.js",
"scripts": {
"test": "karma start",
"build": "webpack",
"version": "npm run build && git add -A dist"
},
"author": "Kevin Crawford",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.6.1",
"jasmine": "^2.4.1",
"jasmine-promises": "^0.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.13.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
]
},
"dependencies": {
"bowser": "^2.3.0",
"lodash": "^4.11.1"
}
}