-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "esverify",
"version": "0.0.0-development",
"description": "ECMAScript program verifier based on SMT solving",
"author": "Christopher Schuster <[email protected]>",
"license": "MIT",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"files": [
"bin",
"build/main/*.js",
"build/main/*.d.ts",
"build/module/*.js",
"build/module/*.d.ts"
],
"bin": {
"esverify": "./bin/esverify.js"
},
"engines": {
"node": ">=14.18"
},
"bugs": {
"url": "https://github.com/levjj/esverify/issues"
},
"homepage": "https://esverify.org/",
"scripts": {
"lint": "tsc --noEmit && tslint --project .",
"test": "TS_NODE_TRANSPILE_ONLY=true mocha -r ts-node/register tests/*.ts",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "https://github.com/levjj/esverify.git"
},
"dependencies": {
"@types/esprima": "^4.0.2",
"@types/estree": "0.0.45",
"esprima": "^4.0.1",
"minimist2": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@commitlint/prompt": "^17.6.1",
"@commitlint/prompt-cli": "^17.6.1",
"@commitlint/travis-cli": "^12.0.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"husky": "^4.3.8",
"mocha": "^10.2.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -x @commitlint/config-conventional -e $HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm test && npm run build"
}
},
"volta": {
"node": "14.18.0"
}
}