-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rc-test",
"version": "6.0.9",
"description": "test tools for react component",
"keywords": [
"react",
"test"
],
"homepage": "http://github.com/react-component/rc-test",
"author": {
"name": "yiminghe@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:react-component/rc-test.git"
},
"bugs": {
"url": "http://github.com/react-component/rc-test/issues"
},
"licenses": "MIT",
"bin": {
"rc-test": "./bin/rc-test.js",
"rc-test-run": "./bin/rc-test-run.js"
},
"scripts": {
"pub": "git push origin && npm publish",
"precommit": "npm run checkDep && npm run lint",
"checkDep": "node scripts/checkDep",
"lint": "eslint --ext .js,.jsx lib"
},
"dependencies": {
"colorful": "2.x",
"commander": "2.8.x",
"console-polyfill": "^0.2.3",
"es5-shim": "^4.5.9",
"es6-promise": "^4.1.0",
"fs-extra": "^0.16.5",
"glob": "~5.0.15",
"gulp": "^3.8.10",
"html5shiv": "^3.7.3",
"istanbul-instrumenter-loader": "2.x",
"karma": "~1.1.2",
"karma-chrome-launcher": "~1.0.1",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-coveralls": "~1.1.2",
"karma-firefox-launcher": "~1.0.0",
"karma-ie-launcher": "~1.0.0",
"karma-mocha": "~1.1.1",
"karma-mocha-reporter": "~2.1.0",
"karma-phantomjs-launcher": "~1.0.1",
"karma-safari-launcher": "~1.0.0",
"karma-sauce-launcher": "~1.0.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "2.x",
"match-require": "2.x",
"minimist": "1.x",
"mocha": "2.x",
"object-assign": "4.x",
"phantomjs-prebuilt": "^2.1.4",
"shelljs": "0.3.x"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-plugin-react": "^3.16.1",
"pre-commit": "1.x",
"webpack": "^5.43.0"
},
"pre-commit": [
"precommit"
]
}