-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
51
{
"name": "@astronautlabs/st291",
"version": "2.0.2",
"access": "public",
"publishConfig": {
"access": "public"
},
"description": "Implements the ST 291 ancillary data syntax",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"clean": "rimraf dist",
"test": "npm run build && node dist/test",
"parse": "node ./scripts/cli.js",
"build": "npm run clean && tsc",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astronautlabs/st291.git"
},
"author": "Astronaut Labs, LLC",
"contributors": [
"William Lahti <liam@astronautlabs.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/astronautlabs/st291/issues"
},
"homepage": "https://github.com/astronautlabs/st291#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/node": "^10.12.17",
"@types/stream-buffers": "^3.0.3",
"chai": "^4.2.0",
"razmin": "^1.0.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.19",
"stream-buffers": "^3.0.2",
"typescript": "^4.2.3",
"zone.js": "^0.11.4"
},
"dependencies": {
"@astronautlabs/bitstream": "^2.0.2"
}
}