-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "oozie-api",
"version": "0.1.10",
"description": "A node module for oozie in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-document": "npm run build && npm run documentation-markdown",
"documentation-html": "./node_modules/.bin/typedoc --target ES6 --out docs-html/ ./src",
"documentation-markdown": "./node_modules/.bin/typedoc --theme markdown --mdDocusaurus --mdHideSources --out docs-markdown/ ./src",
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/ts-node ./src/index.ts",
"test": "jest --forceExit --coverage --verbose"
},
"engines": {
"node": "12.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptariche/oozie-ts.git"
},
"keywords": [
"oozie",
"typescript"
],
"author": "Peter A. Tariche",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ptariche/oozie-ts/issues"
},
"homepage": "https://github.com/ptariche/oozie-ts#readme",
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/jest": "^24.9.1",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^1.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2"
}
}