-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.26 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
{
"name": "@pinyin/types",
"version": "0.0.47",
"description": "Useful types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"prepublishOnly": "rm -rf dist && npx tsc",
"test": "npx tsc && npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinyin/types.git"
},
"keywords": [
"typescript"
],
"author": "Bo Bao <[email protected]> (https://github.com/pinyin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinyin/types/issues"
},
"homepage": "https://github.com/pinyin/types#readme",
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.7",
"jest": "^23.4.2",
"ts-jest": "^23.1.3",
"typescript": "^3.0.1",
"typings-tester": "^0.3.1"
},
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"verbose": true,
"globals": {
"ts-jest": {
"enableTsDiagnostics": false
}
},
"testURL": "http://localhost"
}
}