-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "kokoro",
"version": "1.0.0",
"description": "Headless music player written with redux.",
"main": "dist/kokoro.min.js",
"module": "dist/kokoro.esm.js",
"scripts": {
"develop": "webpack-dev-server --mode development",
"build": "rollup -c && webpack",
"version": "rollup -c && webpack",
"test": "jest --coverage",
"cov": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint --fix .",
"gitadd": "git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cool2645/kokoro.git"
},
"keywords": [
"music-player"
],
"author": "rikakomoe",
"license": "MIT",
"bugs": {
"url": "https://github.com/cool2645/kokoro/issues"
},
"homepage": "https://github.com/cool2645/kokoro#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.6",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-mock-random": "^1.0.2",
"pre-commit": "^1.2.2",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typedoc": "^0.15.0",
"typedoc-webpack-plugin": "^1.1.4",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"pre-commit": [
"test",
"lint",
"gitadd"
]
}