-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "handy-storage",
"version": "2.1.6",
"description": "HandyStorage is a simple way to store your data in a JSON file",
"main": "lib/index.js",
"types": "./main.d.ts",
"scripts": {
"start": "npm run compile && node examples/index.js",
"start:watch": "nodemon run examples/index.js",
"compile": "babel -d lib/ src/",
"compile:watch": "babel -w -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alireza29675/handy-storage.git"
},
"keywords": [
"handy",
"storage",
"json",
"easy",
"filesystem"
],
"author": "Alireza Sheikholmolouki",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alireza29675/handy-storage/issues"
},
"homepage": "https://github.com/Alireza29675/handy-storage#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"nodemon": "^1.19.1"
},
"dependencies": {
"json-beautify": "^1.0.1"
}
}