-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
{
"name": "react-datascript",
"version": "0.3.8",
"description": "React bindings for datascript",
"main": "lib/index.js",
"scripts": {
"build": "BABEL_ENV=commonjs babel src --out-dir lib",
"prepublish": "npm run build",
"test": "BABEL_ENV=commonjs mocha --compilers js:babel-register --recursive --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurdasnijor/react-datascript.git"
},
"keywords": [
"datascript",
"react"
],
"author": "Gurdas Nijor",
"license": "ISC",
"bugs": {
"url": "https://github.com/gurdasnijor/react-datascript/issues"
},
"homepage": "https://github.com/gurdasnijor/react-datascript#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-boilerplate": "^1.1.1",
"datascript": "^0.15.0",
"enzyme": "^2.2.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.3.0",
"expect": "^1.19.0",
"jsdom": "^8.5.0",
"mocha": "^2.4.5",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.1"
},
"peerDependencies": {
"datascript": "^0.15.0",
"react": "^15.0.0"
},
"dependencies": {
"edn-js": "0.0.3"
}
}