-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.83 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
{
"name": "assemblyscript-regex",
"version": "0.1.0",
"description": "A regex engine built with AssemblyScript",
"ascMain": "assembly/index.ts",
"main": "assembly/index.ts",
"scripts": {
"pretest": "npm run test:generate && npm run asbuild:untouched && npm run asbuild:empty",
"test": "npm run prettier && npm run eslint && npm run asp && npm run test:empty",
"test:empty": "diff build/empty.wat assembly/__tests__/empty.wat",
"test:generate": "node spec/test-generator.js",
"asp": "asp --verbose --nologo",
"asp:ci": "asp --nologo",
"prettier": "prettier --check .",
"prettier:write": "prettier --write .",
"eslint:write": "npm run eslint -- --fix ",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:empty": "asc --config asconfig.empty.json",
"tsrun": "ts-node ts/index.ts",
"benchmark": "node benchmark/benchmark.js",
"eslint": "eslint --max-warnings 0 --ext ts \"assembly/**/*.ts\""
},
"author": "colin.eberhardt@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ColinEberhardt/assemblyscript-regex"
},
"devDependencies": {
"@as-pect/cli": "^8.0.1",
"@assemblyscript/loader": "^0.27.0",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"assemblyscript": "^0.25.0",
"benchmark": "^2.1.4",
"eslint": "^7.18.0",
"husky": "^4.2.5",
"prettier": "^2.2.1",
"semantic-release": "^17.3.7",
"text-encoding": "^0.7.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && npm run eslint"
}
}
}