-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "regl-insta-lines",
"homepage": "https://github.com/deluksic/regl-insta-lines",
"repository": {
"url": "https://github.com/deluksic/regl-insta-lines"
},
"author": {
"email": "[email protected]",
"name": "Unknown"
},
"version": "2.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": true,
"license": "MIT",
"scripts": {
"build": "([ -d dist ] && rm -r dist || echo) && tsc",
"start": "parcel demo/index.html",
"lint": "eslint . --ext .jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:watch": "yarn test --watch",
"type": "tsc --noEmit"
},
"dependencies": {
"regl": "^2.1.0"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "7.18.6",
"@types/dat.gui": "0.7.7",
"@types/jest": "29.0.3",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"babel-jest": "29.0.3",
"dat.gui": "0.7.9",
"eslint": "8.23.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"jest": "29.0.3",
"jest-matcher-deep-close-to": "1.3.0",
"parcel": "2.7.0",
"typescript": "4.8.3"
},
"files": [
"dist"
]
}