forked from bluehalo/workamajig-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 998 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
41
42
{
"name": "workamajig",
"description": "Node Request-based API wrapper for the Workamajig API",
"author": "Asymmetrik Ltd. (https://asymmetrik.com)",
"contributors": [
"Bryan Young <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE",
"repository": "https://github.com/Asymmetrik/workamajig-node",
"version": "0.0.1",
"readme": "README.md",
"engines": {
"node": ">= v0.10.0"
},
"keywords": [
"workamajig",
"project management",
"rest",
"api"
],
"main": "lib/workamajig.js",
"scripts": {
"mocha": "mocha",
"test": "npm run lint && mocha",
"lint": "jscs ."
},
"dependencies": {
"bluebird": "^2.10.2",
"lodash.isplainobject": "^4.0.6",
"object-assign": "^4.1.0",
"qs": "^2.4.2",
"request": "^2.79.0"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"dotenv": "^2.0.0",
"jscs": "^2.3.5",
"mocha": "~2.1.0",
"stripe-javascript-style": "^1.0.1"
}
}