-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "json-extra",
"version": "2.0.1",
"description": "json-extra gives you a little more power to json files and strings",
"main": "dest/index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint lib/**/*.ts __tests__/**/*.ts",
"prepublish": "npm run build",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf dest && tsc && babel dest -d dest"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JPeer264/node-json-extra.git"
},
"author": "Jan Peer Stöcklmair",
"license": "MIT",
"bugs": {
"url": "https://github.com/JPeer264/node-json-extra/issues"
},
"homepage": "https://github.com/JPeer264/node-json-extra#readme",
"keywords": [
"json",
"extra",
"string",
"file",
"read",
"object",
"check"
],
"dependencies": {
"fs-extra": "^8.0.1",
"lodash.includes": "^4.3.0",
"object.entries": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.3",
"@types/lodash.includes": "^4.3.6",
"@types/node": "^13.7.7",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"babel-plugin-add-module-exports": "^0.2.1",
"coveralls": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"rimraf": "^3.0.2",
"tmp": "^0.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}