-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 963 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
37
38
39
40
{
"name": "cnabjs",
"version": "0.0.5",
"description": "A library for loading and working with CNAB (Cloud Native Application Bundle) manifests",
"main": "js/ts/index.js",
"types": "js/ts/index.d.ts",
"files": [
"js/ts/**/*"
],
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "npm run compile",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/deislabs/cnabjs.git"
},
"keywords": [
"cnab"
],
"author": "itowlson@microsoft.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/deislabs/cnabjs/issues"
},
"homepage": "https://github.com/deislabs/cnabjs#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"tslint": "^5.9.1",
"typescript": "^3.5.3"
},
"dependencies": {
"ajv": "^6.10.2"
}
}