-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.52 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
88
89
{
"name": "chimee-helper-log",
"version": "0.2.3",
"description": "logger of chimee",
"main": "lib/index.js",
"module": "lib/index.mjs",
"jsnext:main": "lib/index.mjs",
"browser": "lib/index.browser.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"start": "jest --coverage --watch",
"lint": "tslint -c ./tslint.json 'src/**/*.ts' --fix && eslint ./ --fix",
"precommit": "npm run lint",
"prepush": "npm run test",
"build": "npm run tsc && tsc --emitDeclarationOnly true --outDir ./lib && 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",
"tsc": " tsc --outDir ./ts-out",
"doc": "documentation readme src/index.js --section=doc --github=true --project-version=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-helper-log.git"
},
"keywords": [
"logger",
"chimee",
"video"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-helper-log/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-helper-log#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"toxic-predicate-functions": "^0.2.4"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/lodash": "^4.14.119",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-es2015-rollup": "^3.0.0",
"documentation": "^9.0.0",
"eslint": "^5.10.0",
"eslint-config-egg": "^7.1.0",
"eslint-plugin-jest": "^22.1.2",
"husky": "^1.2.0",
"jest": "^23.6.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-uglify": "^6.0.0",
"toxic-utils": "^0.3.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"jest": {
"modulePaths": [
"src"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.tsx?$": "ts-jest",
".*": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}