-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
{
"name": "pm-exec",
"version": "1.0.0",
"description": "Execute whichever package manager is currently running",
"main": "dist/index.js",
"bin": {
"pm-exec": "dist/bin.js"
},
"typings": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist/**",
"!dist/**/*.spec.*",
"!dist/**/*.map"
],
"scripts": {
"version": "pm-exec run all",
"postversion": "git push && git push --tags",
"prepublishOnly": "pm-exec run all",
"all": "pm-exec run clean && pm-exec run test && pm-exec run build",
"test": "pm-exec run test:lint && pm-exec run test:dep",
"test:lint": "eslint --config .eslintrc.full.yaml 'src/**/*.ts'",
"test:dep": "depcheck",
"build": "pm-exec run build:main && pm-exec run build:copybin",
"build:main": "tsc",
"build:copybin": "copyfiles -u 1 src/bin.js dist",
"clean": "rimraf dist"
},
"keywords": [
"package manager",
"package",
"npm",
"yarn",
"pnpm",
"execute",
"run",
"script"
],
"author": "Slune",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/slune-org/pm-exec.git"
},
"bugs": {
"url": "https://github.com/slune-org/pm-exec/issues"
},
"homepage": "https://github.com/slune-org/pm-exec#readme",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/node": "13.7.4",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"copyfiles": "2.2.0",
"depcheck": "0.9.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsdoc": "21.0.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"pm-exec": "1.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"typescript": "3.8.2"
}
}