-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 940 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
{
"name": "json-orm",
"version": "0.0.23",
"description": "Manipulate json files using common orm language",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test --recursive",
"coverage": "nyc --reporter=lcov npm run test"
},
"author": "Carlos Galveias",
"repository": {
"type": "git",
"url": "https://github.com/carlosgalveias/json-orm.git"
},
"keywords": [
"node",
"json",
"orm"
],
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.8.2",
"nyc": "^15.1.0"
},
"overrides": {
"braces": "3.0.3",
"cross-spawn": "7.0.5"
}
}