-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "intent-parser",
"version": "1.0.10",
"description": "A basic intent parser designed for Project Abigail.",
"main": "dist/intent-parser.js",
"jsnext:main": "src/intent-parser.js",
"scripts": {
"build": "rollup --config",
"prepublish": "npm run build",
"lint": "eslint .",
"test": "mocha --require babel-register --preset es2015 --plugins transform-es2015-modules-commonjs --recursive test"
},
"keywords": [
"Intent parser",
"NLP"
],
"author": "Guillaume Marty <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"chrono-node": "^1.2.5",
"moment": "^2.17.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-register": "^6.16.3",
"eslint": "^3.7.1",
"mocha": "^3.1.0",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^1.17.6"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-abigail/intent-parser.git"
},
"bugs": {
"url": "https://github.com/project-abigail/intent-parser/issues"
},
"homepage": "https://github.com/project-abigail/intent-parser#readme"
}