-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "orolo",
"version": "0.1.1",
"description": "An aggressive natural language dates parser for JavaScript",
"homepage": "https://github.com/pveller/orolo",
"bugs": "https://github.com/pveller/orolo/issues",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"lint-staged": {
"*.ts": ["tslint -c tslint.json -t stylish --fix", "git add"]
},
"scripts": {
"prepublish": "npm run build",
"precommit": "lint-staged",
"build": "tsc",
"test": "jest"
},
"keywords": [
"dates",
"date",
"parser",
"natural language",
"understanding",
"nlp"
],
"author": {
"name": "Pavel Veller",
"email": "[email protected]",
"url": "https://www.pveller.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pveller/orolo.git"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"coveralls": "^3.0.3",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3"
},
"dependencies": {
"@types/lodash": "^4.14.123",
"date-fns": "^1.30.1",
"lodash": "^4.17.11"
}
}