-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "intersect",
"version": "0.1.0",
"description": "Example code for simple collision detection",
"homepage": "https://github.com/noonat/intersect",
"repository": {
"type": "git",
"url": "https://github.com/noonat/intersect.git"
},
"scripts": {
"build": "node build.js",
"clean": "rimraf src/intersect.ts lib/intersect.js* docs/bundle.js* docs/*.ttf docs/*.woff docs/*.woff2",
"prepare": "npm run build",
"test": "jest && tslint src/*.ts"
},
"main": "lib/intersect.js",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/katex": "^0.10.2",
"@types/node": "^12.7.5",
"css-loader": "^3.2.0",
"docco": "^0.8.0",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"marked": ">=0.3.18",
"markdown-it": "^10.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.1.2",
"tslint": "^5.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3",
"url-loader": "^2.1.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.(ts|tsx|js|jsx)$"
},
"dependencies": {
"katex": "^0.11.1"
}
}