-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.4 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
{
"name": "chimee-helper-utils",
"version": "0.2.1",
"description": "utils of chimee",
"main": "lib/index.js",
"module": "lib/index.mjs",
"jsnext:main": "lib/index.mjs",
"browser": "lib/index.browser.js",
"scripts": {
"test": "jest --coverage && flow && node env-check.js",
"start": "jest --coverage --watch",
"flow": "flow",
"lint": "flow && eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run test",
"prepublishOnly": "npm t && pkg-ok",
"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",
"doc": "documentation readme src/index.js --section=doc --github=true --project-version=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-helper-utils.git"
},
"keywords": [
"utils",
"chimee",
"video"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-helper-utils/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-helper-utils#readme",
"dependencies": {
"babel-runtime": "^6.23.0",
"toxic-predicate-functions": "^0.1.2"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"documentation": "^5.2.1",
"eslint": "^4.0.0",
"eslint-config-egg": "^5.1.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-jest": "^21.5.0",
"flow-bin": "^0.61.0",
"husky": "^0.14.1",
"jest": "^22.0.4",
"nyc": "^11.0.2",
"pkg-ok": "^1.1.0",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"toxic-utils": "^0.2.0"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"transform": {
".*": "babel-jest"
}
}
}