-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "react-object-tree",
"version": "1.0.1",
"description": "Component to render JavaScript object value in collapsible tree",
"main": "lib/scripts/index.js",
"scripts": {
"build:scripts": "babel src/scripts --out-dir lib/scripts",
"build:styles": "lessc src/styles/object-tree.less > lib/styles/object-tree.css",
"build": "npm run build:scripts && npm run build:styles"
},
"keyword": [
"react",
"react-component"
],
"files": [
"lib"
],
"author": "Shinichi Tomita <shinichi.tomita@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stomita/react-object-tree"
},
"devDependencies": {
"babel": "^5.8.21",
"less": "^2.5.1"
},
"dependencies": {
"classnames": "^2.1.3",
"react": "^0.13.3",
"type-name": "^1.0.1"
}
}