-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
{
"name": "util-extra",
"version": "0.0.30",
"description": "utils",
"keywords": [
"utils"
],
"type": "module",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"scripts": {
"start": "jest --verbose --watch",
"test": "jest --coverage",
"prebuild": "rm dist -rf",
"build": "node --loader ts-node/esm build.ts",
"postbuild": "cp package.json dist && cp LICENSE dist && cp README.md dist",
"prerelease": "npm run build && npm version patch && cp package.json dist",
"release": "cd dist && npm publish"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/expert-elm/util-extra.git"
},
"author": "Rabbit <yfhj1990@hotmali.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/expert-elm/util-extra/issues"
},
"homepage": "https://github.com/expert-elm/util-extra#readme",
"devDependencies": {
"@jest/globals": "^27.0.3",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.19",
"@types/node": "^10.14.10",
"glob": "^7.1.4",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.1.1",
"ts-jest": "^24.1.0",
"ts-morph": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "4.1.5"
},
"sideEffects": false,
"jest": {
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock"
],
"testPathIgnorePatterns": [
"/node_modules/",
".yarn",
"<rootDir>/lib/",
"<rootDir>/dist/",
"<rootDir>/test/",
"<rootDir>/node_modules/"
],
"verbose": true
},
"dependencies": {
"tslib": "^1.10.0"
},
"ts-node": {
"transpileOnly": true
}
}