-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.81 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
73
74
75
76
77
78
79
80
{
"name": "shree",
"version": "0.1.13",
"description": "lite three.js",
"main": "dist/shree.js",
"sideEffects": false,
"scripts": {
"start": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.prod.js --display-used-exports",
"test": "jest && codecov",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sawa-zen/shree.git"
},
"keywords": [
"three.js"
],
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add"
]
},
"author": "sawa-zen",
"license": "MIT",
"bugs": {
"url": "https://github.com/sawa-zen/shree/issues"
},
"homepage": "https://github.com/sawa-zen/shree#readme",
"dependencies": {
"eventemitter3": "^3.1.0"
},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/webpack": "4.4.32",
"codecov": "3.5.0",
"fork-ts-checker-webpack-plugin": "1.3.7",
"husky": "2.4.1",
"jest": "24.7.1",
"jest-canvas-mock": "2.1.0",
"lint-staged": "8.2.1",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"ts-loader": "6.0.2",
"tslint": "5.17.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.5.2",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "4.34.0",
"webpack-cli": "3.3.4",
"webpack-merge": "4.2.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"jest-canvas-mock"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"collectCoverage": true
}
}