-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.88 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
76
77
78
79
80
81
{
"name": "@messageflow/build",
"version": "1.0.0",
"description": "Quick build with Gulp",
"keywords": [
"@messageflow/build",
"babel",
"build",
"build-tool",
"builder",
"compile",
"copy",
"gulp",
"lint",
"minify",
"node",
"tslint",
"typescript"
],
"homepage": "https://github.com/Messageflow/build",
"license": "MIT",
"author": {
"name": "Rong Sen Ng",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"files": [
"index.d.ts",
"index.js",
"index.mjs"
],
"main": "index",
"repository": {
"type": "git",
"url": "[email protected]:Messageflow/build.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production gulp",
"check": "npm run lint && npm run nsp",
"demo": "gulp --gulpfile src/demo/gulpfile.js",
"gulp": "gulp --gulpfile=gulpfile.js",
"lint": "cross-env NODE_ENV=production gulp lint",
"nsp": "nsp check",
"prepublishOnly": "npm run check && npm run build",
"test": "jest --config ./.jestrc.json"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-preset-minify": "^0.4.3",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0-beta.2",
"gulp-filter": "^5.1.0",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.3",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"devDependencies": {
"@messageflow/tslint-config": "^1.0.0",
"@types/del": "^3.0.1",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"@types/vinyl": "^2.0.2",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.6",
"jest": "^23.0.0",
"nsp": "^3.2.1",
"ts-jest": "^22.4.6"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"publishConfig": {
"access": "public"
}
}