-
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.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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": "urlpath",
"version": "1.0.2",
"description": "url路径解析",
"main": "lib/index.js",
"scripts": {
"check": "fecs check src/ test/ --reporter=baidu",
"compile": "babel src/ -d lib/",
"watch": "npm run compile -- --watch",
"prepublish": "npm run compile",
"test:watch": "npm run test -- --watch",
"test:cov": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register -t 5000 --recursive -R spec test/",
"test": "mocha --compilers js:babel-register --reporter spec --timeout 5000 --recursive test/",
"release": "bash release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuexb/urlpath.git"
},
"contributors": [
{
"name": "52cik",
"email": "fe.52cik@gmail.com"
},
{
"name": "xuexb",
"email": "fe.xiaowu@gmail.com"
}
],
"author": "xuexb",
"keywords": [
"urlpath"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xuexb/urlpath/issues"
},
"homepage": "https://github.com/xuexb/urlpath#readme",
"devDependencies": {
"babel-cli": "6.x.x",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-0": "6.x.x",
"babel-preset-stage-3": "6.x.x",
"chai": "^3.5.0",
"fecs": "^1.2.2",
"istanbul": ">=1.0.0-alpha.2",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
}
}