-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "english-article-classifier",
"version": "1.0.1",
"description": "Classifier english article(a, an).",
"main": "lib/english-article-classifier.js",
"scripts": {
"test": "mocha 'test/**/*.ts'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"precommit": "lint-staged",
"postcommit": "git reset",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"english",
"article",
"a",
"an"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/english-article-classifier.git"
},
"bugs": {
"url": "https://github.com/azu/english-article-classifier/issues"
},
"homepage": "https://github.com/azu/english-article-classifier",
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.47",
"cross-env": "^5.1.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"types": "lib/english-article-classifier.d.ts"
}