-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "@shed/math",
"version": "0.2.0",
"description": "math library for webgl",
"module": "dist/math.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist/* && rollup -c --environment DEBUG:false & yarn build:types",
"build:types": " tsc --project tsconfig.types.json",
"watch": "rimraf dist/* && rollup -c -w --environment DEBUG:false",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.24",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-generate-html-template": "^1.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"keywords": [
"mini-game",
"wechat",
"webgl",
"math",
"matrix",
"vector"
],
"author": "nshen <nshen121@gmail.com>",
"homepage": "https://github.com/nshen/mini-shed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nshen/mini-shed.git"
},
"bugs": {
"url": "https://github.com/nshen/mini-shed/issues"
},
"license": "MIT",
"gitHead": "5163b0e9f85641db21b730a1c2032ac9605e8ec9"
}