-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "ansible-playbook-cli-js",
"version": "2.0.5",
"description": "A node.js wrapper for the ansible-playbook command",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "rimraf dist/ && tsc",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test": "npm run lint && npm run build && npm run test-spec",
"prepublish": "npm run lint && npm run build && rimraf dist/**/*.spec.* "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/ansible-playbook-cli-js.git"
},
"keywords": [
"ansible",
"ansible-playbook"
],
"author": "Matthias Ludwig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quobject/ansible-playbook-cli-js/issues"
},
"homepage": "https://github.com/Quobject/ansible-playbook-cli-js",
"devDependencies": {
"@types/blue-tape": "^0.1.32",
"@types/lodash": "4.14.136",
"blue-tape": "1.0.0",
"rimraf": "2.6.3",
"tap-diff": "0.1.1",
"ts-node": "7.0.0",
"tslint": "5.18.0",
"typescript": "3.5.3"
},
"dependencies": {
"lodash": "^4.17.15",
"core-js": "^3.1.4",
"nodeify-ts": "^1.0.6"
}
}