-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "nlcst-pattern-match",
"version": "1.4.0",
"description": "Pattern match for NLCST.",
"keywords": [
"nlcst",
"pattern",
"match",
"find"
],
"homepage": "https://github.com/azu/nlp-pattern-match/tree/master/packages/nlcst-pattern-match/",
"bugs": {
"url": "https://github.com/azu/nlp-pattern-match/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/nlp-pattern-match.git"
},
"license": "MIT",
"author": "azu",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"src/"
],
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"prepublish": "npm run --if-present build",
"test": "mocha 'test/**/*.ts'",
"update-snapshot": "SNAPSHOT_UPDATE=1 npm test",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@types/debug": "^0.0.30",
"debug": "^3.1.0",
"estree-walker": "^0.5.0",
"nlcst-to-string": "^2.0.0",
"nlcst-types": "^1.4.0",
"unist-types": "^1.4.0"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"cross-env": "^7.0.3",
"mocha": "^9.2.1",
"nlcst-parse-english": "^1.4.0",
"nlcst-parse-japanese": "^1.4.0",
"prettier": "^2.5.1",
"snap-shot-it": "^7.9.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"unist-util-inspect": "*"
}
}