This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "@vivaxy/javascript",
"version": "0.14.3",
"description": "JavaScript Complier and Executor",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collect-coverage",
"release:beta": "npm run coverage && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags",
"release": "npm run coverage && standard-version && npm publish && git push --follow-tags",
"benchmark": "node ./benchmark/parse.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/JavaScript.git"
},
"author": "vivaxy <xyxuye2007@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/JavaScript/issues"
},
"homepage": "https://github.com/vivaxy/JavaScript#readme",
"devDependencies": {
"@babel/parser": "^7.0.0",
"acorn": "^8.0.0",
"benchmark": "^2.1.4",
"fast-glob": "^3.1.1",
"fs-extra": "^10.0.0",
"husky": "6",
"jest": "^27.0.0",
"lint-staged": "^11.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0"
},
"lint-staged": {
"**/**.{js,json,md}": [
"prettier --write"
]
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/__tests__/**/*.test.js"
],
"collectCoverageFrom": [
"helpers/**/*.js",
"lib/**/*.js",
"index.js",
"!**/__tests__/**/*.js"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/helpers/setup-after-env.js"
]
}
}