-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.61 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
{
"name": "ynlu",
"description": "Yoctol Natural Language Understanding SDK for nodejs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yoctol/yoctol-nlu-node.git"
},
"version": "0.5.3",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "npm run lint:fix && npm run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand",
"testonly:watch": "jest --watch",
"preversion": "npm test"
},
"dependencies": {
"apollo-link": "^1.2.11",
"apollo-link-http": "^1.5.14",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"invariant": "^2.2.4",
"node-fetch": "^2.6.0",
"update-notifier": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-yoctol-base": "^0.20.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"husky": "^2.4.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2",
"prettier-package-json": "^2.1.0"
},
"keywords": [
"language",
"nlp",
"nlu",
"understanding",
"yoctol"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}