-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
{
"name": "@messageflow/messageflow",
"version": "0.0.1",
"description": "Messageflow",
"keywords": [
"messageflow",
"node",
"typescript"
],
"homepage": "https://github.com/Messageflow/messageflow",
"license": "MIT",
"author": {
"name": "Rong Sen Ng",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "[email protected]:Messageflow/messageflow.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",
"ts": "tsc --target esnext --lib esnext,esnext.asynciterable --module commonjs gulpfile.ts"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^8.0.57",
"babel-cli": "^6.26.0",
"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",
"cross-env": "^5.1.1",
"del": "^3.0.0",
"env-cmd": "^7.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-sequence": "^0.4.6",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"nsp": "^3.1.0",
"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"
}