-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "@yuforium/activity-streams",
"version": "0.1.3",
"description": "Activity Streams definitions with validation using class-validator and class-transformer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"doc": "npx typedoc -out docs ./src/index.ts",
"test": "npx jest",
"coverage": "npx jest --coverage",
"build": "npx tsc -p tsconfig.build.json",
"build:watch": "npx tsc -p tsconfig.build.json --watch",
"prepare": "npm run build"
},
"author": "Chris Moser",
"license": "MIT",
"peerDependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"jest": "^27.5.1",
"source-map-support": "^0.5.19",
"ts-jest": "^27.1.4",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuforium/activity-streams.git"
},
"keywords": [
"activity",
"streams"
],
"bugs": {
"url": "https://github.com/yuforium/activity-streams-validator/issues"
},
"homepage": "https://github.com/yuforium/activity-streams-validator#readme",
"files": [
"dist",
"src"
]
}