forked from commenthol/serialize-to-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "serialize-to-js",
"version": "3.1.2",
"description": "serialize objects to javascript",
"keywords": [
"javascript",
"objects",
"serialize"
],
"homepage": "https://github.com/commenthol/serialize-to-js",
"bugs": {
"url": "https://github.com/commenthol/serialize-to-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/serialize-to-js.git"
},
"license": "MIT",
"author": "EmileSonneveld <[email protected]>",
"main": "lib",
"module": "src",
"type": "module",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"all": "npm run clean && npm run lint && npm run build && npm test",
"build": "babel -d lib src && npx webpack && node build_addon.js",
"clean": "rimraf lib doc coverage .nyc_output *.tgz",
"coverage": "nyc -r text -r html npm test",
"lint": "eslint src test",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "mocha"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"env": {
"mocha": true
},
"rules": {
"key-spacing": 0,
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
}
},
"dependencies": {
"acorn": "^8.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"chai": "^4.3.7",
"eslint": "^8.19.0",
"mocha": "^7.2.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"webpack": "5.38.1",
"webpack-cli": "4.7.0"
},
"engines": {
"node": ">=7.6.0"
},
"maintainers": [
"commenthol <[email protected]>",
"EmileSonneveld <[email protected]>"
],
"mocha": {
"check-leaks": true
}
}