-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
75 lines (75 loc) · 2 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
{
"name": "cherrytree",
"version": "2.4.1",
"description": "Cherrytree - a flexible hierarchical client side router",
"main": "index",
"scripts": {
"build": "./tasks/build.sh",
"release": "release --build",
"test": "standard | snazzy && karma start --single-run",
"test-no-coverage": "standard | snazzy && karma start --single-run --no-coverage",
"watch": "DEBUG=1 webpack -w index.js build/standalone.js"
},
"repository": {
"type": "git",
"url": "git://github.com/QubitProducts/cherrytree.git"
},
"author": "Karolis Narkevicius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/QubitProducts/cherrytree/issues"
},
"dependencies": {
"location-bar": "^3.0.1",
"path-to-regexp": "^1.0.3"
},
"keywords": [
"router",
"history",
"browser",
"pushState",
"hierarchical",
"nested"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.20.0",
"bro-size": "^1.0.0",
"es6-promise": "^3.0.2",
"istanbul-instrumenter-loader": "^0.1.3",
"jquery": "^3.3.1",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.5.0",
"karma-effroi": "0.0.0",
"karma-firefox-launcher": "~0.1.6",
"karma-mocha": "^0.2.0",
"karma-sauce-launcher": "^0.2.10",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.8.1",
"kn-release": "^1.0.1",
"mocha": "^2.2.0",
"referee": "^1.1.1",
"snazzy": "^2.0.1",
"standard": "^5.1.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.6.6",
"yargs": "^3.23.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"examples/**/dist",
"docs/**",
"build/**"
]
}
}