-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "calder-gl",
"version": "0.0.0",
"description": "A library for sculpting and manipulating complex 3D structures for the web.",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"main": "build/src/calder.js",
"devDependencies": {
"jest": "~22.4.3",
"prettier": "^1.12.1",
"rimraf": "~2.6.2",
"ts-jest": "~22.4.2",
"ts-loader": "^4.2.0",
"tslint": "~5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~2.24.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"install": "tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.json",
"check-tslint": "tslint-config-prettier-check ./tslint.json",
"check-format": "prettier --list-different '**/*.ts'",
"fix-format": "prettier --write '**/*.ts'",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "npm run test-only",
"test-only": "jest",
"watch": "tsc -w -p tsconfig.build.json",
"webpack": "webpack"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/bezier-js": "^0.0.7",
"@types/gl-matrix": "^2.4.0",
"@types/jest": "23.3.13",
"@types/lodash": "^4.14.107",
"@types/node": "~8.10.0",
"babel-polyfill": "^6.26.0",
"bezier-js": "^2.2.14",
"gl-matrix": "^2.5.1",
"lodash": "^4.17.13",
"regl": "regl-project/regl",
"ts-sinon": "1.0.12",
"tslib": "~1.9.0",
"typescript": "~2.8.1"
}
}