-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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/clean",
"version": "0.0.6",
"description": "Quick clean with del",
"keywords": [
"@messageflow/clean",
"clean",
"cleaning",
"del",
"delete",
"node",
"typescript"
],
"homepage": "https://github.com/Messageflow/clean",
"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/clean.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production gulp",
"check": "npm run lint && npm run nsp",
"demo": "node -r esm src/demo",
"gulp": "gulp",
"lint": "cross-env NODE_ENV=production gulp lint",
"nsp": "nsp check",
"prepublishOnly": "npm run check && npm run build",
"test": "jest --config ./.jestrc.json"
},
"dependencies": {
"del": "^3.0.0"
},
"devDependencies": {
"@messageflow/build": "0.0.12",
"@messageflow/tslint-config": "0.0.3",
"@types/del": "^3.0.1",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"esm": "^3.0.16",
"gulp": "^4.0.0",
"jest": "^22.4.3",
"nsp": "^3.2.1",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"publishConfig": {
"access": "public"
}
}