-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
53
54
55
{
"name": "hotbits",
"version": "1.0.1",
"description": "A library to fetch random bytes from the HotBits API",
"engines": {
"node": ">=6.17"
},
"main": "dist/hotbits.cjs.js",
"module": "dist/hotbits.esm.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && rollup -c",
"lint": "eslint src",
"test": "jest \"src/.+\\.test\\.js$\"",
"watch": "npm run test -- --watch"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenjiO/hotbits.git"
},
"keywords": [
"hotbits",
"random"
],
"author": "Kenji Okamoto",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenjiO/hotbits/issues"
},
"homepage": "https://github.com/kenjiO/hotbits#readme",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"nock": "^10.0.6",
"rimraf": "^2.6.3",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3"
}
}