-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "rack-qs",
"version": "0.0.1",
"description": "rack-qs encodes an object into query string params that Rack applications can decode.",
"main": "dist/rack-qs.js",
"module": "src/index.js",
"dependencies": {
"jquery-param": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/criles25/rack-qs.git"
},
"keywords": [
"rails",
"ruby",
"rack",
"ruby on rails",
"query string",
"params",
"parameters"
],
"author": "criles25",
"license": "MIT",
"bugs": {
"url": "https://github.com/criles25/rack-qs/issues"
},
"homepage": "https://github.com/criles25/rack-qs#readme"
}