-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "lede",
"version": "0.0.1",
"description": "An open source library of React components designed with news in mind.",
"main": "gulpfile.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NathanLawrence/lede.git"
},
"author": "Nathan Lawrence ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/NathanLawrence/lede/issues"
},
"homepage": "https://github.com/NathanLawrence/lede",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"browserify-global-shim": "^1.0.3",
"graceful-fs": "^4.1.11",
"gulp": "^3.9.0",
"gulp-uglify": "^3.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserify": {
"transform": [
"browserify-global-shim"
]
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
}
}