-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
116 lines (116 loc) · 3.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "toxic-decorators",
"version": "0.4.0-beta.16",
"description": "decorators",
"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 && node env-node-check",
"start": "jest --coverage --watch",
"jest": "jest",
"lint": "tslint -c ./tslint.json 'src/**/*.ts' --fix && eslint . --fix",
"eslint": "eslint . --fix",
"build": "npm run tsc && tsc --emitDeclarationOnly true --outDir ./lib && cp -r ./src/typings ./lib/typings && 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",
"preversion": "npm test",
"version": "npm run build && git add -A lib",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm t"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/toxic-johann/toxic-decorators.git"
},
"keywords": [
"decorators"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/toxic-johann/toxic-decorators/issues"
},
"homepage": "https://github.com/toxic-johann/toxic-decorators#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@types/lodash-es": "^4.17.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-egg": "^8.0.0",
"eslint-plugin-jest": "^23.0.0",
"husky": "^4.0.2",
"jest": "^24.8.0",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^25.1.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"jest": {
"modulePaths": [
"src"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"/node_modules/(?!lodash-es).+\\.js$"
]
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"lodash-es": "^4.17.11",
"toxic-predicate-functions": "^0.4.1",
"toxic-utils": "^0.4.3"
}
}