-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 851 Bytes
/
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
{
"name": "activitystreams2",
"version": "0.1.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "",
"license": "ISC",
"scripts": {
"test": "ts-node src/test",
"tsc": "tsc",
"tsfmt": "tsfmt -r",
"build": "npm run tsc",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"lint": "npm run check",
"lint-fix": "npm run fix",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"preversion": "npm test"
},
"devDependencies": {
"@types/node": "^12.7.4",
"gts": "^0.6.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^3.6.2",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"activitystreams2-spec-scraped": "^0.11.0"
}
}