-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "activitypub-objects",
"version": "0.0.3",
"main": "dst/index.js",
"author": "aoinu",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Aoinu/activitypub-objects.git"
},
"scripts": {
"lint": "tslint './src/**/*.ts' './__tests__/**/*.ts'",
"lint:fix": "tslint --fix './src/**/*.ts' './__tests__/**/*.ts'",
"test": "jest",
"test:cov": "jest --coverage",
"test:ci": "jest --ci --no-cache --coverage --reporters=default --reporters=jest-junit",
"posttest:ci": "codecov",
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"codecov": "^3.2.0",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"keywords": [
"activitypub"
]
}