-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "@perf-tools/performance",
"version": "1.1.1",
"description": "User Timing polyfill",
"keywords": [
"perf-tools",
"performance",
"polyfill"
],
"author": "RubaXa <[email protected]",
"license": "MIT",
"repository": "[email protected]:artifact-project/perf-tools.git",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"ts-build": "tsc",
"git-clean": "git clean -f",
"prepublishOnly": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean",
"postversion": "git push && git push --tags"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts"
],
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.3",
"ts-jest": "^20.0.4",
"typescript": "^3.9.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}