forked from moshie/teamwork-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "teamwork-api",
"version": "0.0.0-development",
"description": "A wrapper around teamwork api making it easier to perform requests.",
"keywords": [
"api",
"teamwork",
"projects"
],
"homepage": "https://github.com/moshie/teamwork-api#readme",
"bugs": {
"url": "https://github.com/moshie/teamwork-api/issues"
},
"license": "MIT",
"author": "David Hewitt <[email protected]> (https://www.way2adv.com/)",
"main": "src/index.js",
"directories": {
"doc": "./docs",
"lib": "./src",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/moshie/teamwork-api.git"
},
"scripts": {
"commit": "npm run docs && git-cz",
"lint": "eslint src",
"docs": "node ./docs.js",
"test": "istanbul cover _mocha -- -R spec",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"comment-parser": "^0.6.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^4.0.0",
"eslint": "^4.15.0",
"ghooks": "^2.0.2",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"nock": "^9.1.6",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.24",
"travis-deploy-once": "^4.3.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}