-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
{
"name": "async-usage",
"version": "2.2.0",
"sideEffects": false,
"keywords": [
"async",
"dynamic",
"import",
"ESNext",
"component",
"flexible",
"Webpack",
"TS",
"JS",
"React",
"Vue",
"Vue.js",
"Angular.js",
"Angular"
],
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"esnext": "dist/esnext/index.js",
"next": "dist/esnext/index.js",
"typings": "dist/types",
"files": [
"src",
"index.ts",
"dist"
],
"description": "Declarative dynamic imports for everyone!",
"repository": {
"type": "git",
"url": "git+https://github.com/KazanExpress/async-usage.git"
},
"bugs": {
"url": "https://github.com/KazanExpress/async-usage/issues"
},
"homepage": "https://github.com/KazanExpress/async-usage#readme",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"author": "Raiondesu <[email protected]>",
"scripts": {
"prebuild": "rimraf dist",
"build:es6": "tsc",
"build:es5": "tsc -p ./tsconfig.es5.json",
"build:esnext": "tsc -p ./tsconfig.esnext.json",
"build": "npm run build:es6 && npm run build:es5 && npm run build:esnext",
"start": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run test -- --coverage --no-cache",
"coverage": "cat ./coverage/lcov.info | coveralls",
"preversion": "npm run test:prod && npm run build && (git diff --quiet && git diff --staged --quiet || git commit -am \"Update dist - fresh build\")",
"patch": "npm version patch && npm publish && git push",
"minor": "npm version minor && npm publish && git push",
"major": "npm version major && npm publish && git push"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testEnvironment": "jsdom",
"testURL": "http://google.com/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coverageReporters": [
"lcov",
"text"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/dist/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true
},
"devDependencies": {
"@commitlint/cli": "^7.3.1",
"@kazanexpress/frontend-commitlint": "^1.2.0",
"@types/jest": "^22.0.0",
"@types/node": "^10.0.3",
"@types/rollup-plugin-json": "^3.0.1",
"colors": "^1.1.2",
"coveralls": "^3.0.0",
"jest": "^22.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^22.0.0",
"ts-node": "^6.0.0",
"tslint": "^5.12.0",
"typescript": "^3.5.3"
}
}