forked from lahmatiy/component-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "component-inspector",
"title": "Component inspector",
"description": "Component DOM inspector",
"version": "1.5.0",
"repository": "lahmatiy/component-inspector",
"keywords": [
"frontend",
"component",
"dom",
"inspector",
"spa",
"devtools",
"tools",
"backbone",
"react"
],
"licenses": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.3.0",
"babel-loader": "^6.2.0",
"babel-plugin-source-wrapper": "^2.1.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.0",
"basisjs": "1.6.1",
"basisjs-tools": "~1.10.0",
"chai": "3.5.0",
"classnames": "2.1.2",
"karma": "~1.3.0",
"jscs": "~2.10.0",
"karma-chrome-launcher": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"mocha": "2.5.3",
"react-redux": "3.0.1",
"redux": "3.0.0",
"webpack": "1.13.1"
},
"scripts": {
"build": "basis build --pack",
"prepublish": "npm run build",
"codestyle": "jscs src tests",
"test": "karma start",
"init-test-deps": "cd tests && cd react14 && npm i && cd ../react15 && npm i",
"travis": "npm run codestyle && npm run init-test-deps && npm test"
}
}