-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
82
83
84
85
{
"name": "trailz",
"version": "0.0.7",
"author": "jmquigley <jmquigley@outlook.com>",
"description": "A library for generating mazes",
"private": false,
"license": "MIT",
"debug": false,
"repository": {
"type": "git",
"url": "https://github.com/jmquigley/trailz"
},
"bugs": {
"url": "https://github.com/jmquigley/trailz/issues"
},
"engines": {
"node": ">=7.5"
},
"bin": {
"trailz": "./cli.js"
},
"files": [
"cli.js",
"index.js",
"index.d.ts",
"lib",
"!lib/*.js.map"
],
"dependencies": {
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"sprintf-js": "https://github.com/jmquigley/sprintf.js.git#dc62b1c",
"util.constants": "^0.0.22",
"util.ds": "^0.0.53",
"util.toolbox": "^0.0.73",
"yargs": "^13.2.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.3.4",
"@types/fs-extra": "5.0.5",
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.122",
"@types/node": "^11.10.5",
"@types/sprintf-js": "1.1.2",
"@types/yargs": "^12.0.9",
"babel-plugin-espower": "^3.0.1",
"coveralls": "^3.0.3",
"jest": "^24.3.0",
"power-assert": "^1.6.1",
"prettier": "^1.16.4",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333",
"util.pkgwrap": "0.0.104"
},
"pkgwrap": {
"cleanup": [
"cli.js",
"cli.d.ts",
"docs",
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"trailz*.tgz"
]
},
"scripts": {
"all": "yarn install && yarn build && yarn docs && yarn test && yarn package",
"build": "yarn clean && yarn lint && yarn prettier && pkgwrap --build",
"clean": "pkgwrap --clean",
"clean:dist": "yarn clean && rimraf node_modules/ yarn.lock",
"coverage": "pkgwrap --coverage --jest",
"docs": "pkgwrap --docs",
"lint": "pkgwrap --lint",
"package": "npm pack --dry-run",
"prepublishOnly": "yarn run all",
"prettier": "prettier --write \"**/*.{ts,tsx,js,json,yaml,yml,css}\"",
"test": "jest"
}
}