-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "g.frame",
"version": "0.2.0",
"description": "WebGL framework",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "lerna run build",
"build:main": "lerna run build:main",
"docs": "trash docs && typedoc && touch docs/.nojekyll",
"clean": "lerna run clean",
"test": "lerna run test",
"lint": "lerna run lint",
"publish": "lerna run publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeryBigThings/g.frame.git"
},
"keywords": [
"webgl",
"three.js"
],
"author": "Very Big Things",
"license": "MIT",
"bugs": {
"url": "https://github.com/VeryBigThings/g.frame/issues"
},
"homepage": "https://github.com/VeryBigThings/g.frame#readme",
"devDependencies": {
"@types/jest": "25.1.4",
"@types/node": "13.9.1",
"copyfiles": "2.2.0",
"jest": "25.1.0",
"lerna": "3.20.2",
"npm-run-all": "4.1.5",
"trash-cli": "3.0.0",
"ts-jest": "25.2.1",
"tslint": "6.1.0",
"typedoc": "0.17.4",
"typedoc-plugin-lerna-packages": "0.3.0",
"typescript": "3.8.3"
},
"dependencies": {}
}