-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.2 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
{
"name": "push-data-to-url",
"version": "2.0.0",
"description": "This is a plugin to add, update and remove data to url params without reloading the webpage.",
"main": "src/pushToUrl.js",
"scripts": {
"clean": "rimraf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"files": [
"lib",
"src"
],
"directories": {
"example": "example"
},
"author": "Manish Baral",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/baralmanish/push-data-to-url.git"
},
"keywords": [
"push data to url",
"npm",
"module",
"node",
"javascript",
"JS"
],
"bugs": {
"url": "https://github.com/baralmanish/push-data-to-url/issues"
},
"homepage": "https://github.com/baralmanish/push-data-to-url#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0"
}
}