-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
92 lines (92 loc) · 2.08 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
86
87
88
89
90
91
92
{
"name": "@mozillasecurity/octo",
"version": "2.0.0",
"description": "A unified shared library which aids in building fuzzers for browsers or as complement for an existing fuzzing framework.",
"keywords": [
"fuzzing",
"browser",
"firefox",
"random",
"javascript",
"node",
"library"
],
"homepage": "https://github.com/mozillasecurity/octo",
"repository": {
"type": "git",
"url": "https://github.com/mozillasecurity/octo.git"
},
"bugs": {
"url": "https://github.com/mozillasecurity/octo/issues",
"email": "[email protected]"
},
"author": "Christoph Diehl <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"build": "parcel build index.js --out-file=octo.js --no-source-maps",
"test": "jest --silent",
"coverage": "cross-env NODE_ENV=test jest --silent --coverage --collectCoverageFrom=lib/**/*.js",
"coveralls": "yarn coverage && cat ./coverage/lcov.info | coveralls",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"docs": "esdoc",
"pre-commit": "lint-staged",
"release": "np"
},
"lint-staged": {
"*.js": [
"yarn lint:fix",
"git add"
]
},
"standard": {
"ignore": [
"dist/"
],
"envs": {
"browser": true,
"node": true,
"es6": true
}
},
"jest": {
"verbose": true
},
"esdoc": {
"source": "./lib",
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"lint": {
"enable": true
},
"coverage": {
"enable": true
}
}
},
{
"name": "esdoc-node"
}
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"husky": "^1.0.0-rc.14",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"np": "^3.0.4",
"parcel": "^1.12.4",
"standard": "^12.0.1"
},
"dependencies": {
"html-entities": "^1.2.1",
"jsesc": "^2.5.2"
}
}