-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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": "@messageflow/trentity",
"version": "0.0.4",
"description": "Train your Dialogflow with better entities in simple way",
"keywords": [
"dialogflow-entity",
"messageflow",
"node",
"train-entity",
"trentity",
"typescript"
],
"homepage": "https://github.com/Messageflow/trentity",
"license": "MIT",
"author": {
"name": "Rong Sen Ng",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github.com:Messageflow/trentity.git"
},
"scripts": {
"build": "npm run ts && cross-env NODE_ENV=production gulp build && npm run cleanup",
"build:debug": "npm run ts && gulp build && npm run cleanup",
"check": "npm run lint && npm run nsp",
"cleanup": "rm -rf gulpfile.js",
"gulp": "npm run ts && gulp",
"lint": "tslint --project tsconfig.json --config tslint.json",
"lint:fix": "tslint -p . -c tslint.json --fix",
"nsp": "nsp check",
"prepublishOnly": "npm run check && npm run build",
"test": "jest --config ./.jestrc.json",
"ts": "tsc --target esnext --lib esnext,esnext.asynciterable --module commonjs gulpfile.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"babel-cli": "^6.26.0",
"babel-plugin-inline-replace-variables": "^1.3.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.2.0",
"codecov": "^3.0.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"del": "^3.0.0",
"env-cmd": "^7.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-htmlmin": "^4.0.0",
"gulp-sequence": "^0.4.6",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"jest": "^22.0.6",
"monaco-editor": "^0.10.1",
"nsp": "^3.1.0",
"ts-jest": "^22.0.1",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"tslint-consistent-codestyle": "^1.11.0",
"tslint-immutable": "^4.4.0",
"typescript": "^2.6.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"@std/esm": "cjs"
}