-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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-randomuser",
"version": "1.0.0",
"description": "A Deity plugin to generate random users",
"main": "dist/bundle.js",
"jsnext:main": "src/index.js",
"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-randomuser.git"
},
"keywords": [
"deity-plugin"
],
"author": "Callum Macrae <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeityJS/deity-randomuser/issues"
},
"homepage": "https://github.com/DeityJS/deity-randomuser#readme",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.9.0",
"eslint": "^2.12.0",
"mocha": "^2.5.3",
"rollup": "^0.31.2",
"rollup-plugin-babel": "^2.5.1",
"should": "^9.0.2"
},
"dependencies": {
"node-fetch": "^1.3.3",
"regenerator": "^0.8.42"
}
}