-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "xpath",
"version": "0.0.1",
"description": "xpath路径处理工具",
"main": "src/xpath.js",
"scripts": {
"check": "fecs check src/ test/ --reporter=baidu --rule",
"test": "karma start --browsers ChromeHeadless karma.conf.unit.js",
"test:sauce": "karma start karma.conf.sauce.js",
"test:phantom": "npm test -- --browsers PhantomJS",
"test:cov": "npm test -- --reporters mocha,coverage",
"test:watch": "npm test -- --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/xuexb/xpath.git"
},
"author": "xuexb <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xuexb/xpath/issues"
},
"homepage": "https://github.com/xuexb/xpath",
"devDependencies": {
"chai": "^4.0.0",
"fecs": "^1.2.2",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^3.2.0",
"sinon": "^3.0.0",
"sinon-chai": "^2.8.0",
"zepto": "^1.2.0"
},
"directories": {
"test": "test"
},
"keywords": [
"xpath"
]
}