-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
79
80
81
82
83
84
{
"name": "react-super-treeview",
"version": "0.3.3-beta.0",
"description": "React Super Treeview",
"main": "dist/main.js",
"engines": {
"node": ">=6.7.0",
"npm": ">=4.0.0"
},
"files": [
"dist"
],
"scripts": {
"clean:dist": "rm -rf dist",
"clean:examples": "rm -rf examples",
"dev:watch": "./node_modules/webpack/bin/webpack.js --watch",
"test": "./node_modules/mocha-webpack/bin/mocha-webpack --webpack-config webpack.test.js \"src/**/*.test.js\"",
"test:watch": "./node_modules/mocha-webpack/bin/mocha-webpack -w --webpack-config webpack.test.js \"src/**/*.test.js\"",
"examples": "npm run clean:examples && npm run build && ./node_modules/webpack/bin/webpack.js --config webpack.examples.js",
"examples:watch": "./node_modules/webpack/bin/webpack.js --config webpack.examples.js --watch",
"build": "npm run clean:dist && npm test && ./node_modules/webpack/bin/webpack.js",
"preversion": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/azizali/react-super-treeview.git"
},
"bugs": {
"url": "https://github.com/azizali/react-super-treeview/issues"
},
"homepage": "https://github.com/azizali/react-super-treeview",
"keywords": [
"react-component",
"react-super-treeview",
"expandable-tree",
"treeview",
"tree",
"expand",
"expandable",
"collapsable",
"collapse"
],
"author": "Aziz Ali <aziz@ilovecoding.org>",
"license": "MIT",
"peerDependencies": {
"react": "^15.6.1 || ^16.0.0",
"react-dom": "^15.6.1 || ^16.0.0"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.5.10",
"react-transition-group": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^3.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-15": "^1.2.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"mocha": "^4.0.1",
"mocha-webpack": "^1.1.0",
"node-sass": "^4.11.0",
"null-loader": "^0.1.1",
"react": "^15.5.10",
"react-dom": "^15.5.10",
"react-syntax-highlighter": "^5.8.0",
"react-test-renderer": "^15.6.2",
"sass-loader": "^6.0.6",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
}
}