-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "bvh",
"version": "0.6.26",
"description": "BVH",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Zerrien/bvh"
},
"scripts": {
"start": "npm-run-all --parallel start:dev-server start:test-runner",
"build": "npm-run-all --parallel build:es6 build:es5 build:docs",
"test": "jest --config ./config/jest.config.js ",
"pre-publish": "npm publish --dry-run",
"build:es6": "tsc --project ./config/tsconfig.json",
"build:es5": "tsc --project ./config/tsconfig.es5.json",
"build:docs": "webpack --config ./config/webpack.config.js",
"start:dev-server": "webpack-dev-server --config ./config/webpack.config.js",
"start:test-runner": "jest --config ./config/jest.config.js --watch",
"test:ci": "npm test -- --ci --runInBand",
"lint": "eslint --config ./config/eslint.config.js --ignore-pattern '*_old.js' --ignore-pattern '*.json' ./src/** ./config/**",
"test:perf": "node ./bin/perf_test.js"
},
"keywords": [
"BVH",
"mesh",
"ray",
"triangle",
"intersection",
"webgl",
"spatial"
],
"author": "Ben Raziel & Josh Callebaut",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zerrien/bvh/issues"
},
"homepage": "https://zerrien.github.io/bvh/",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/preset-env": "7.1.6",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "23.3.5",
"@types/node": "12.12.12",
"@types/three": "0.93.4",
"@types/webvr-api": "0.0.35",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"assemblyscript": "github:AssemblyScript/assemblyscript",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.3.1",
"bufferutil": "4.0.5",
"canvas": "2.8.0",
"core-js": "3.18.3",
"eslint": "8.1.0",
"jest": "27.3.1",
"jest-junit": "13.0.0",
"node-notifier": "10.0.0",
"npm-run-all": "4.1.5",
"puppeteer": "1.19.0",
"regenerator-runtime": "0.12.1",
"stats.js": "0.17.0",
"three": "0.133.1",
"ts-jest": "27.0.7",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"utf-8-validate": "5.0.7",
"wabt": "1.0.6",
"webpack": "5.59.1",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.3.1",
"whatwg-fetch": "3.0.0"
}
}