forked from zhw2590582/ArtPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.38 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
{
"name": "artplayer-packages",
"version": "1.0.0",
"description": "ArtPlayer is a modern HTML5 video player",
"scripts": {
"bootstrap": "npx lerna bootstrap",
"version": "npx lerna version patch --yes --no-push",
"publish": "npx lerna publish from-package --yes",
"release": "npm run lint && npm run version && npm run build:all && npm test && npm run publish",
"dev": "npx cross-env NODE_ENV=development node ./scripts/dev.js",
"start": "npx cross-env NODE_ENV=development && npx servor docs index.html 8080 5000",
"build": "npx cross-env NODE_ENV=production node ./scripts/build.js",
"build:all": "npm run build all && git add . && git commit -m \"build all packages\" -n ",
"test": "npx mocha-chrome ./test/index.html --mocha '{\"ui\":\"bdd\"}'",
"lint": "npx eslint packages/*/src",
"sizereport": "npx sizereport --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhw2590582/ArtPlayer.git"
},
"keywords": [
"video",
"player"
],
"author": "Harvey Zack <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhw2590582/ArtPlayer/issues"
},
"homepage": "https://github.com/zhw2590582/ArtPlayer#readme",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.1",
"browser-env": "^3.2.6",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cpy": "^7.2.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"del": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.17.3",
"glob": "^7.1.4",
"inquirer": "^6.3.1",
"lerna": "^3.14.1",
"mocha": "^6.1.4",
"mocha-chrome": "^2.0.0",
"node-sass": "^4.12.0",
"rollup": "^1.14.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svgo": "^1.0.2",
"rollup-plugin-uglify": "^6.0.2",
"servor": "^2.2.1",
"travis-size-report": "^1.1.0"
}
}