-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "sync-views",
"description": "Synchronous template rendering for node.js",
"version": "0.3.1",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "gulp build"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/liamqma/sync-views.git"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.10.4",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015-node4": "^2.0.3",
"babel-register": "^6.9.0",
"coveralls": "^2.11.11",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jade": "^1.11.0",
"nyc": "^7.0.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/**/*.spec.js"
]
},
"engines": {
"node": ">=4.2.4"
},
"files": [
"lib/",
"src/",
"README.md"
]
}