-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.7 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
{
"name": "punybind",
"version": "1.3.0",
"description": "A minimalist binding helper",
"main": "dist/punybind.js",
"files": [
"dist/*.js"
],
"scripts": {
"pretest": "rimraf .stryker-tmp",
"test": "jest --setupFilesAfterEnv ./tests/source.js",
"test:minified": "jest --no-coverage --setupFilesAfterEnv ./tests/minified.js",
"mutate": "stryker run",
"lint": "standard --fix",
"build": "uglifyjs punybind.js --compress --mangle -o dist/punybind.js && node version && node update-readme",
"serve": "reserve",
"ci": "npm run test && npm run build && npm run test:minified"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnaudBuchholz/punybind.git"
},
"keywords": [
"HTML",
"binding"
],
"author": "Arnaud Buchholz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnaudBuchholz/punybind/issues"
},
"homepage": "https://github.com/ArnaudBuchholz/punybind#readme",
"devDependencies": {
"@stryker-mutator/core": "^6.3.1",
"@stryker-mutator/jest-runner": "^6.3.1",
"jest": "^29.3.1",
"jsdom": "^21.0.0",
"punyexpr": "^1.0.3",
"reserve": "^1.15.2",
"rimraf": "^4.0.7",
"standard": "^17.0.0",
"uglify-js": "^3.17.4"
},
"standard": {
"env": [
"browser",
"jest"
],
"globals": [
"JSDOM",
"punybind",
"dom2json",
"safeWait"
],
"ignore": [
"dist/punybind.js"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"punybind.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}