-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"name": "punyexpr",
"version": "1.0.4",
"description": "A minimalist expression compiler and evaluator",
"main": "dist/punyexpr.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 punyexpr.js --compress --mangle -o dist/punyexpr.js && node version && node update-readme",
"start": "reserve",
"ci": "npm run test && npm run build && npm run test:minified"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnaudBuchholz/punyexpr.git"
},
"author": "Arnaud Buchholz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnaudBuchholz/punyexpr/issues"
},
"homepage": "https://github.com/ArnaudBuchholz/punyexpr#readme",
"devDependencies": {
"@stryker-mutator/core": "^6.3.0",
"@stryker-mutator/jest-runner": "^6.3.0",
"jest": "^29.3.1",
"reserve": "^1.15.2",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"uglify-js": "^3.17.4"
},
"standard": {
"env": [
"jest"
],
"globals": [
"punyexpr"
],
"ignore": [
"dist/punyexpr.js"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"punyexpr.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}