This repository was archived by the owner on Oct 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "engineslist",
"version": "1.1.0",
"description": "Check engines you have defined in a file or `package.json` section that satisfies your global or locally program.",
"keywords": [
"check",
"engines",
"npm",
"package",
"program"
],
"homepage": "https://github.com/muuvmuuv/engineslist",
"repository": {
"type": "git",
"url": "https://github.com/muuvmuuv/engineslist.git"
},
"license": "MIT",
"author": {
"name": "Marvin Heilemann",
"email": "marvin.heilemann+github@googlemail.com",
"url": "https://marvin.digital/"
},
"files": [
"dist",
"types.d.ts"
],
"main": "dist/engineslist.js",
"module": "dist/engineslist.esm.js",
"bin": "./dist/cli.js",
"typings": "types.d.ts",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "del-cli dist/*",
"dev": "cross-env NODE_ENV=development npm run build",
"lint": "tslint --project .",
"prepublishOnly": "npm run prod",
"pretty": "pretty-quick",
"prod": "cross-env NODE_ENV=production npm run build",
"release": "np",
"start": "npm run watch",
"test": "nyc ava",
"test-cli": "engineslist",
"cli": "node dist/cli.js",
"watch": "npm run dev -- -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@sindresorhus/is": "^1.0.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"cosmiconfig": "^5.2.1",
"execa": "^2.0.3",
"listr": "0.14.3",
"meow": "^5.0.0",
"npm-api": "^1.0.0",
"npm-run-path": "^3.1.0",
"path-key": "^3.1.0",
"rxjs": "^6.5.2",
"semver": "^6.2.0"
},
"devDependencies": {
"@types/cosmiconfig": "^5.0.3",
"@types/execa": "^0.9.0",
"@types/listr": "^0.14.0",
"@types/meow": "^5.0.0",
"@types/node": "^12.6.3",
"@types/semver": "^6.0.0",
"ava": "^2.2.0",
"create-banner": "^1.0.0",
"cross-env": "^5.2.0",
"del-cli": "^2.0.0",
"moment": "^2.24.0",
"np": "^5.0.2",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rollup": "^1.17.0",
"rollup-plugin-analyzer": "^3.1.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
},
"ava": {
"concurrency": 4,
"timeout": "1m",
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
]
}
}