-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
{
"name": "serialize-to-module",
"version": "1.1.0",
"description": "serialize objects to node module",
"keywords": [
"javascript",
"objects",
"serialize"
],
"homepage": "https://github.com/commenthol/serialize-to-module",
"bugs": {
"url": "https://github.com/commenthol/serialize-to-module/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/commenthol/serialize-to-module.git"
},
"license": "MIT",
"author": "commenthol <[email protected]>",
"main": "lib",
"directories": {
"test": "test"
},
"scripts": {
"all": "npm run lint && npm test",
"clean": "rimraf doc coverage .nyc_output node_modules *.tgz",
"coverage": "nyc -r text -r html npm test",
"doc": "jsdox -o doc lib/*.js",
"lint": "eslint lib test",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "mocha"
},
"eslintConfig": {
"plugins": [
"standard"
],
"extends": "standard",
"rules": {
"key-spacing": 0
}
},
"mocha": {
"checkLeaks": true,
"reporter": "spec"
},
"dependencies": {
"js-beautify": "^1.13.5",
"serialize-to-js": "^3.1.1"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=4.0.0"
},
"maintainers": "commenthol <[email protected]>"
}