-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.28 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
67
68
69
70
71
72
73
{
"name": "chimee-kernel",
"version": "1.5.0-alpha",
"description": "kernel of chimee",
"main": "lib/index.js",
"module": "lib/index.mjs",
"jsnext:main": "lib/index.mjs",
"browser": "lib/index.browser.js",
"scripts": {
"precommit": "npm run lint && npm t",
"prepush": "npm run test",
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min",
"b-common": "rollup -c build/rollup.config.common.js",
"b-es": "rollup -c build/rollup.config.es.js",
"b-umd": "rollup -c build/rollup.config.umd.js",
"b-min": "rollup -c build/rollup.config.min.js",
"start": "rollup -c build/rollup.config.dev.js -w",
"lint": "eslint . --fix && flow check",
"flow": "flow check",
"test": "jest --coverage",
"unit": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-kernel.git"
},
"keywords": [
"kernel",
"chimee",
"video"
],
"author": "songguangyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-kernel/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-kernel#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"chimee-helper": "^0.2.11"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"chimee-kernel-flv": "^1.4.10",
"chimee-kernel-hls": "^1.3.0",
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-jest": "^21.15.1",
"flow-bin": "^0.70.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"pkg-ok": "^2.1.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}