-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "@iro/cox",
"version": "1.0.3",
"description": "Collision engine may evolve into physical engine.",
"main": "dist/cox.min.js",
"module": "dist/cox.es.js",
"type": "module",
"types": "dist/type/index.d.ts",
"scripts": {
"build": "rm -fr dist & rollup -c",
"build:test": "npm run build && mocha test/",
"test": "mocha test/",
"tsc": "tsc --target es5 --declaration --declarationDir dist/type ./src/index.ts --emitDeclarationOnly "
},
"browserslist": [
"android >= 5",
"ios >= 8"
],
"repository": {
"type": "git",
"url": "https://github.com/JetLua/cox"
},
"author": "JetLu",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.0.0",
"rollup": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.0",
"typescript": "^4.1.2"
}
}