This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.62 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": "@atomist/npm-tools",
"version": "0.1.1",
"description": "Atomist NPM Tools",
"author": {
"name": "Atomist",
"email": "[email protected]",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/npm-tools.git"
},
"homepage": "https://github.com/atomist/npm-tools#readme",
"bugs": {
"url": "https://github.com/atomist/npm-tools/issues"
},
"dependencies": {
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"git-url-parse": "^11.4.4",
"source-map-support": "^0.5.19",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/power-assert": "^1.5.3",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"espower-typescript": "^10.0.0",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supervisor": "^0.12.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.4"
},
"main": "./index.js",
"types": "./index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s compile test lint doc",
"clean": "run-p clean:compile clean:test clean:doc clean:run",
"clean:compile": "rimraf git-info.json build \"index.{d.ts,js}{,.map}\" \"{bin,lib,test}/**/*.{d.ts,js}{,.map}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"clean:test": "rimraf .nyc_output coverage",
"compile": "run-s compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"fmt": "run-s fmt:gql",
"fmt:gql": "prettier --write \"lib/graphql/**/*.graphql\"",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.2.0",
"npm": ">=5.0.0"
},
"bin": {
"atm-npm-tools": "./bin/start.js"
}
}