-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1001 Bytes
/
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
{
"name": "render-if",
"version": "0.1.1",
"description": "Convenient way to render React components",
"main": "lib/renderIf.js",
"scripts": {
"compile": "babel renderIf.js --out-dir lib/",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajwhite/render-if.git"
},
"keywords": [
"react",
"react-native",
"render"
],
"author": "Atticus White <contact@atticuswhite.com> (http://atticuswhite.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajwhite/render-if/issues"
},
"homepage": "https://github.com/ajwhite/render-if#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}