-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 946 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
{
"name": "three-janitor",
"version": "2.0.1",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/module.js",
"author": "Alex Pineda <[email protected]>",
"repository": "https://github.com/alexpineda/three-janitor",
"context": "browser",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "yarn jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"publish:dry-run": "yarn test && yarn build && npm publish --dry-run",
"publish": "yarn test && yarn build && npm publish"
},
"peerDependencies": {
"three": ">0.120.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@types/three": "0.144.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"rollup": "^2.79.0",
"three": ">0.120.0",
"ts-jest": "^29.0.1",
"tslib": "^2.4.0",
"typescript": "^4.7.0"
}
}