-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
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
74
75
76
77
78
{
"name": "react-nested-file-tree",
"version": "0.0.3",
"description": "React component for file directory",
"repository": {
"type": "git",
"url": "https://github.com/woodpig07/react-nested-file-tree.git"
},
"main": "lib/NestedFileTreeView.js",
"style": "dist/default.css",
"scripts": {
"build:lib": "NODE_ENV=production babel src -d lib --ignore index.js,__test__/*",
"build:dist": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"lint": "snazzy --verbose",
"test": "./node_modules/karma/bin/karma start",
"example": "webpack-dev-server --config example/webpack.config.js --content-base example",
"compileexample": "NODE_ENV=production webpack -p --config example/webpack.config.js --content-base example"
},
"keywords": [
"react",
"file",
"directory",
"nested"
],
"engines": {
"node": ">=4.4.4"
},
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"es5-shim": "^4.5.9",
"es6-shim": "^0.35.2",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"sinon": "^1.17.6",
"snazzy": "^5.0.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"standard": {
"ignore": [
"/dist/",
"/lib/",
"karma.conf.js"
],
"parser": "babel-eslint"
}
}