-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "sol-artifact",
"version": "0.0.1",
"description": "React component library.",
"main": "distribution/commonjs/index.js",
"keywords": [
"react",
"react-component",
"artifact"
],
"repository": {
"type": "git",
"url": "https://github.com/SolBlanca/Artifact.git"
},
"author": "Sol Blanca <https://github.com/SolBlanca>",
"license": "UNLICENSED",
"scripts": {
"dev": "webpack -d --watch",
"build": "cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel source --out-dir distribution/commonjs --ignore *.example.js,*.test.js,source/demo/,source/tests.js"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"babel-cli": "6.5.1",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"webpack": "~1.13.0",
"extract-text-webpack-plugin": "~1.0.1"
},
"devDependencies": {
"babel-preset-stage-1": "~6.5.0",
"less": "~2.6.1",
"less-loader": "~2.2.3",
"css-loader": "~0.23.1"
}
}