-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "simplequad",
"version": "2.0.0",
"description": "A simple quadtree implementation useful for 2D collision detection and more.",
"main": "dist/simplequad.umd.js",
"module": "dist/simplequad.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all clean --parallel build:*",
"build:bundles": "rollup --config",
"build:bundles-min": "rollup --config --minify",
"build:types": "tsc --emitDeclarationOnly",
"test": "ava",
"test:coverage": "nyc ava",
"clean": "rimraf dist",
"clean:all": "rimraf dist node_modules",
"prepublishOnly": "npm-run-all test build",
"perf-client": "http-server -p 8080 ./"
},
"author": "Richie Casto (https://github.com/rcasto)",
"homepage": "https://github.com/rcasto/simplequad#readme",
"repository": {
"type": "git",
"url": "https://github.com/rcasto/simplequad.git"
},
"keywords": [
"quadtree",
"2d-collision",
"2d-collision-library",
"quadtree-js",
"quadtree-lib"
],
"license": "MIT",
"devDependencies": {
"@ava/babel": "2.0.0",
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-numeric-separator": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/preset-env": "7.15.0",
"@babel/preset-typescript": "7.15.0",
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"ava": "3.15.0",
"http-server": "13.0.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"rollup": "2.56.3",
"rollup-plugin-terser": "7.0.2",
"ts-node": "10.2.1",
"typescript": "4.4.2"
},
"files": [
"dist/",
"src/"
],
"ava": {
"verbose": true,
"timeout": "1m",
"files": [
"test/**/*",
"!test/helpers/*.ts"
],
"ignoredByWatcher": [
"src/**/*"
],
"babel": {
"compileEnhancements": false,
"compileAsTests": [
"test/helpers/*.ts"
]
},
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true,
"include": [
"src/**/*.ts"
],
"reporter": "html"
}
}