-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
60 lines (60 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
53
54
55
56
57
58
59
60
{
"name": "jsuri",
"description": "Uri and query string manipulation",
"version": "1.3.1",
"author": "Derek Watson <[email protected]> (http://dcw.ca)",
"contributors": [
{
"name": "James M. Greene",
"email": "[email protected]",
"url": "http://greene.io/"
}
],
"homepage": "https://github.com/derek-watson/jsUri",
"repository": {
"type": "git",
"url": "git://github.com/derek-watson/jsUri.git"
},
"keywords": [
"uri",
"url",
"query",
"path"
],
"main": "Uri",
"scripts": {
"test": "./node_modules/.bin/mocha",
"lint": "./node_modules/.bin/jshint Uri.js",
"minify": "./node_modules/.bin/uglifyjs Uri.js > Uri.min.js"
},
"dependencies": {},
"devDependencies": {
"jshint": "~2.1.11",
"uglify-js": "~2.4.0",
"mocha": "~1.14.0"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"jshintConfig": {
"boss": true,
"node": true,
"smarttabs": true,
"undef": true,
"unused": true,
"onecase": true,
"lastsemic": true,
"indent": 2,
"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : true,
"sub" : false,
"trailing" : true,
"white" : false
},
"spm": {
"main": "Uri.js"
}
}