-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "conductor-client",
"version": "1.2.0",
"description": "Conductor client for nodejs ",
"main": "./build/index.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && tsc -p tsconfig.release.json",
"prepublish": "npm run build"
},
"author": "Watchrapong Agsonchu",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"ramda": "^0.26.1",
"tslib": "^1.9.3"
},
"keywords": [
"conductor",
"conductor-nodejs-client"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sendit-asia/conductor-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/sendit-asia/conductor-nodejs-client/issues"
},
"homepage": "https://github.com/sendit-asia/conductor-nodejs-client#readme",
"devDependencies": {
"@types/node": "^10.12.18",
"@types/ramda": "^0.26.1",
"prettier": "^1.15.3",
"tslint": "~5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "~6.0.0",
"tsutils": "~3.7.0",
"typescript": "^3.2.2"
}
}