-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "tapestry",
"version": "1.0.0",
"description": "TBA",
"keywords": [],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/huboneo/tapestry",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"watch": "tsc -w",
"dev": "npm run build && node ./dist/dev.js",
"build": "npm run clean && tsc",
"prepare": "npm run build"
},
"author": "huboneo",
"license": "MIT",
"devDependencies": {
"@types/jest": "24.0.18",
"@types/lodash": "4.14.149",
"@types/node": "13.7.0",
"@types/uuid": "3.4.6",
"jest": "24.9.0",
"rimraf": "3.0.0",
"rxjs": "6.5.3",
"ts-jest": "24.2.0",
"typescript": "3.6.3"
},
"peerDependencies": {
"rxjs": ">= 6"
},
"dependencies": {
"autobind-decorator": "2.4.0",
"lodash": "4.17.15",
"moment": "2.24.0",
"uuid": "3.3.3",
"ws": "7.2.1"
}
}