-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.13 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": "tourcms",
"description": "Node wrapper for the TourCMS API.",
"keywords": [
"tourcms",
"api"
],
"homepage": "https://github.com/tourcms/node-tourcms",
"version": "2.0.0",
"author": "TourCMS <support@palisis.com> (https://www.tourcms.com)",
"contributors": [
"Paul Slugocki <paul.slugocki@palisis.com> (https://github.com/paulslugocki)"
],
"main": "node-tourcms.js",
"repository": {
"type": "git",
"url": "https://github.com/tourcms/node-tourcms.git"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "jshint test/*.js node-tourcms.js && echo Lint passed."
},
"dependencies": {
"xml2js": "0.4.x",
"concat-stream": "1.4.x"
},
"devDependencies": {
"jshint": "^2.6.0",
"mocha": "^2.1.0"
},
"engines" : {
"node" : "*"
},
"jshintConfig": {
"boss": true,
"node": true,
"strict": true,
"newcap": false,
"undef": true,
"unused": true,
"onecase": true,
"lastsemic": true,
"indent": 2,
"globals": {
"escape": true,
"describe": true,
"it": true,
"before": true
}
},
"license": "MIT"
}