-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
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
{
"name": "aho.js",
"version": "0.4.0",
"description": "Pattern finding library for NodeJS",
"main": "dist/lib/index.js",
"files": ["dist/lib/", "coverage/"],
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"build": "tsc",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"prepublish": "npm run lint && npm run build && npm run test",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"aho",
"corasick",
"aho-corasick",
"node",
"javascript",
"string matching",
"pattern matching"
],
"author": "Stephen Marsh",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "~4.4.4"
}
}