-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 977 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"name": "query-params",
"version": "0.0.1",
"description": "Very simple CommonJS-module to encode/decode query parameters",
"main": "./index.js",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git@github.com:finn-no/query-params.git"
},
"keywords": [
"query",
"params",
"encode"
],
"author": "sveinung rosaker <sveinung.rosaker@finn.no>",
"contributors": [
"Gregers Rygg <gregers@finn.no>",
"Michael Gunnulfsen <michael.gunnulfsen@finn.no>"
],
"license": "MIT",
"devDependencies": {
"karma-script-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.1",
"karma-html2js-preprocessor": "~0.1.0",
"karma-firefox-launcher": "~0.1.2",
"karma-jasmine": "~0.1.3",
"karma-coffee-preprocessor": "~0.1.1",
"requirejs": "~2.1.9",
"karma-requirejs": "~0.2.0",
"karma-phantomjs-launcher": "~0.1.1",
"karma": "~0.10.7",
"karma-browserify": "0.0.6"
}
}