-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "netsuite-js",
"description": "A Node wrapper for the NetSuite SOAP API.",
"version": "0.0.4",
"homepage": "https://github.com/CrossLead/netsuite-js",
"bugs": "https://github.com/CrossLead/netsuite-js/issues",
"license": "Apache",
"main": "lib/index.js",
"author": {
"name": "Christian Yang",
"email": "christian.yang@crosslead.com",
"url": "http://crosslead.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/CrossLead/netsuite-js"
},
"keywords": [],
"dependencies": {
"debug": "2.1.1",
"denodeify": "1.2.1",
"lodash": "3.3.1",
"soap": "0.8.0"
},
"devDependencies": {
"async": "^0.9.0",
"coveralls": "^2.11.2",
"gulp": "^3.8.11",
"gulp-bump": "^0.2.1",
"gulp-doxx": "0.0.4",
"gulp-istanbul": "^0.6.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.2",
"gulp-load-plugins": "^0.8.0",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^0.6.6",
"gulp-util": "^3.0.4",
"jshint-stylish": "^1.0.1",
"mocha": "^2.1.0",
"nock": "^0.59.1",
"node-inspector": "^0.9.1",
"should": "^5.0.1"
},
"scripts": {
"coveralls": "gulp test && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "gulp test"
},
"engines": {
"node": ">=4.3.0",
"npm": ">=3"
}
}