-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
{
"name": "natural-script",
"version": "1.0.2",
"description": "Script language to parse english expressions.",
"main": "dist/parser.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src/ --out-dir dist",
"postinstall": "npm run build",
"test": "jest test/**",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix **/*.js",
"format": "prettier --check '**/*.js'",
"format:fix": "prettier --write '**/*.js'",
"release": "standard-version",
"commitlint": "commitlint --from 35094f2471b03135de035d003557ba9c5848b29e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThibaultFriedrich/natural-script.git"
},
"keywords": [
"parser",
"natural",
"language",
"english",
"bot"
],
"husky": {
"hooks": {
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Thibault Friedrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThibaultFriedrich/natural-script/issues"
},
"homepage": "https://github.com/ThibaultFriedrich/natural-script#readme",
"dependencies": {
"chrono-node": "^1.2.5",
"later": "^1.2.0",
"natural": "^0.6.3",
"rrule": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^3.5.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^23.0.5",
"eslint-plugin-node": "^9.1.0",
"husky": "^3.0.0",
"jest": "^24.9.0",
"prettier": "1.18.2",
"standard-version": "^7.0.0"
}
}