forked from react-atomic/react-atomic-organism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 977 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 977 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
34
35
{
"name": "react-atomic-organism",
"version": "0.0.5",
"description": "Atomic design in React (organisms)",
"main": "./build/src/index.js",
"repository": "react-atomic/react-atomic-organisms",
"keywords": [
"reactjs"
],
"author": "Hill <hill@kimo.com>",
"license": "MIT",
"dependencies": {
"react-atomic-molecule": "*"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"react": "^15.0.1"
},
"scripts": {
"build": "rm -rf build && BABEL_ENV=build babel ui -d build/ui && BABEL_ENV=build babel src -d build/src",
"prepublish": "npm run build"
},
"files": [
"build",
"package.json",
"README.md"
]
}