-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "remedy-rest",
"version": "0.1.0",
"description": "A library for the ARS rest api",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "node node_modules\\istanbul\\lib\\cli.js cover node_modules\\mocha\\bin\\_mocha -- -R spec test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvollset/remedy-rest.git"
},
"keywords": [
"ARS",
"rest"
],
"author": "Martin Vollset <[email protected]> (https://github.com/mvollset)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvollset/remedy-rest/issues"
},
"homepage": "https://github.com/mvollset/remedy-rest#readme",
"dependencies": {
"node-rest-client": "^2.0.1",
"querystring": "^0.2.0",
"request": "^2.75.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"grunt": "^1.0.1",
"grunt-coveralls": "^1.0.1",
"grunt-env": "^0.4.4",
"grunt-eslint": "^19.0.0",
"grunt-istanbul": "^0.7.1",
"grunt-jsbeautifier": "^0.2.13",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
}
}