-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "obj-to-query-string",
"version": "1.3.0",
"description": "A standalone js function to convert an object to a query string",
"main": "dist/index.js",
"scripts": {
"transform": "webpack",
"test": "npm run transform; ts-node tests/*.spec.ts",
"build": "webpack",
"prepublishOnly": "npm run test; npm run build",
"preversion": "npm run test;",
"postversion": "git push --tags; git push; npm publish"
},
"author": {
"name": "Dan Wilt",
"email": "[email protected]",
"url": "https://github.com/dwilt"
},
"license": "ISC",
"devDependencies": {
"@types/tape": "^4.2.32",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.11.6",
"tape": "^4.6.0",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"uglify-js": "^2.7.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dwilt/obj-to-query-string"
},
"dependencies": {}
}