-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
43
44
45
46
47
48
49
50
{
"name": "atom-react",
"version": "15.1.2",
"description": "An opiniated way to use ReactJS in a functional way in plain old Javascript, inspired by popular Clojurescript wrappers like Om ",
"keywords": [
"react",
"jsx",
"functional",
"lens",
"lenses",
"atom",
"immutable",
"immutability",
"pure"
],
"author": "Sebastien Lorber",
"homepage": "https://github.com/stample/atom-react",
"bugs": "https://github.com/stample/atom-react/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stample/atom-react.git"
},
"dependencies": {
"react-addons-update": "^15.4.1"
},
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"lodash": ">= 4.17.4"
},
"devDependencies": {
"gulp": "~3.8.6",
"gulp-util": "~2.2.20",
"gulp-browserify": "~0.2.3",
"gulp-uglify": "~0.3.1",
"gulp-rename": "~0.2.0",
"gulp-react": "~0.4.0",
"gulp-jasmine": "~0.2.0"
},
"browserify": {
"transform": [
"envify"
]
},
"main": "./src/atomReact",
"engines": {
"node": "*"
}
}