-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 926 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 926 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
36
37
38
{
"name": "React-GetStarted",
"version": "0.0.1",
"description": "Awesome, my first step in ReactJS",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/FlorenciaJS/React-GetStarted.git"
},
"keywords": [
"ReactJS",
"Examples",
"JavaScript",
"jsx"
],
"author": {
"github": "https://github.com/juandav",
"twitter": "https://twitter.com/@juanqtx",
"gmail": "e.juandav@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FlorenciaJS/React-GetStarted/issues"
},
"dependencies": {
"react": "^0.14.1",
"react-dom": "^0.14.1",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"jquery": "^2.1.4"
},
"scripts": {
"build": "browserify -t babelify ExampleSimpleComponents/app.js > ExampleSimpleComponents/bundle.js"
}
}