-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.44 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "chimee-plugin-center-state",
"version": "0.0.14",
"description": "center-state for chimee",
"main": "lib/index.js",
"module": "lib/index.mjs",
"jsnext:main": "lib/index.mjs",
"browser": "lib/index.browser.js",
"scripts": {
"test": "jest --coverage",
"start": "jest --coverage --watch",
"lint": "eslint ./src --fix",
"precommit": "npm run lint",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-plugin-center-state.git"
},
"keywords": [
"plugin",
"chimee",
"center-state",
"video"
],
"author": "yandeqiang",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-plugin-center-state/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-plugin-center-state#readme",
"dependencies": {
"chimee-helper": "^0.2.11",
"chimee-plugin-popup": "0.0.8"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"chimee": "^0.9.5",
"cssnano": "^3.10.0",
"eslint": "^4.2.0",
"eslint-plugin-jest": "^20.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"postcss-base64": "^0.7.1",
"postcss-nested": "^2.0.2",
"rollup": "^0.45.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"toxic-decorators": "^0.3.3"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"transform": {
".*": "babel-jest"
}
}
}