-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 921 Bytes
/
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
{
"name": "",
"version": "0.1.0",
"description": "Scaffold for Artifact project",
"author": "",
"license": "MIT",
"repository": "[email protected]:artifact-project/scaffold.git",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"ts-build": "tsc",
"git-clean": "git clean -f",
"prepublish": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts"
],
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupFilesAfterEnv": ["<rootDir>/__jest__/extensions.ts"],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}