-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1 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
{
"name": "deity",
"version": "0.2.0",
"description": "Deity is a property generator for use when writing tests.",
"main": "dist/deity.min.js",
"jsnext:main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build && mocha",
"eslint": "eslint .",
"build": "rollup -c",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeityJS/deity.git"
},
"author": "Callum Macrae <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeityJS/deity/issues"
},
"homepage": "https://github.com/DeityJS/deity#readme",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.4.3",
"eslint": "^0.24.1",
"mocha": "^2.4.5",
"rollup": "^0.25.2",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-uglify": "^0.2.0",
"should": "^8.2.1"
},
"dependencies": {
"regenerator": "^0.8.42"
}
}