-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1003 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1003 Bytes
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
{
"name": "scene-graph",
"version": "1.0.0",
"description": "A scene graph managment utility for web games",
"main": "dist/index.min.js",
"module": "dist/index.min.es.js",
"types": "dist/index.d.ts",
"author": "darcy.rayner@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-lint": "^4.5.1",
"typescript": "^3.2.1"
},
"scripts": {
"lint": "$(yarn bin)/tslint -c tsconfig.json src",
"test": "$(yarn bin)/jest"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coverageReporters": [
"json-summary",
"json",
"lcov"
],
"collectCoverage": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(.spec)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {
"reflect-metadata": "^0.1.12"
}
}