-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 KB
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
{
"name": "@elegantthemes/cerebral-router",
"version": "3.2.4",
"description": "An opinionated URL change handler for Cerebral",
"main": "lib/index.js",
"author": "Dustin Falgout <dustin@elegantthemes.com>",
"contributors": [
"Christian Alfoni <christianalfoni@gmail.com>",
"Aleksey Guryanov <gurianov@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elegantthemes/cerebral-router.git"
},
"bugs": {
"url": "https://github.com/elegantthemes/cerebral-router/issues"
},
"homepage": "https://github.com/elegantthemes/cerebral-router",
"dependencies": {
"addressbar": "1.0.3",
"cerebral": "4.2.2",
"url-mapper": "2.0.0"
},
"scripts": {
"test": "mocha -r test/setup --require babel-register \"src/**/*.test.js\" \"test/**/*.test.js\"",
"build": "cross-env BABEL_ENV=production babel src/ --out-dir=lib/ -s",
"coverage": "nyc --reporter=lcov --reporter=json yarn run test",
"prepublish": "yarn build"
},
"nyc": {
"exclude": [
"node_modules",
"lib",
"tests",
"**/*.test.js",
"**/testHelper.js"
]
},
"devDependencies": {
"cross-env": "5.2.0",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-jest": "22.0.6",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-version-transform": "1.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-typescript": "7.0.0-alpha.19",
"babel-register": "6.23.0",
"babel-watch": "2.0.5"
}
}