-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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": "js-safe-json",
"version": "1.0.9",
"description": "handle json data with safe & easy way",
"main": "dist/index.min.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"test": "mocha --require @babel/register",
"build": "babel src -d dist",
"mini": "uglifyjs dist/index.js -c -m -o dist/index.min.js",
"deploy": "npm run build & npm run mini"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohcrider/JsSafeJson.git"
},
"keywords": [
"json"
],
"author": "ohcrider",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohcrider/JsSafeJson/issues"
},
"homepage": "https://github.com/ohcrider/JsSafeJson#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-typeof-symbol": "^7.14.5",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"uglify-js": "^3.5.8"
}
}