-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.16 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
{
"name": "@mishguru/package",
"version": "9.6.0",
"description": "Utils for creating, building and testing NPM packages",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "npm run build && ava ./dist/**/*.spec.js",
"test:pkg": "tsc && ./bin/test --pkg-skip-build",
"lint": "./bin/lint",
"prepublish": "npm run build",
"postpublish": "git push origin master --tags",
"tidy": "./bin/tidy"
},
"bin": {
"pkg-precommit": "./bin/precommit",
"pkg-build": "./bin/build",
"pkg-clean": "./bin/clean",
"pkg-coverage": "./bin/coverage",
"pkg-flow": "./bin/flow",
"pkg-lint": "./bin/lint",
"pkg-test": "./bin/test",
"pkg-tidy": "./bin/tidy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishguruorg/package.git"
},
"author": "George Czabania <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stayradiated/pkg/issues"
},
"homepage": "https://github.com/stayradiated/pkg#readme",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-shorthand-properties": "7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "7.12.1",
"@babel/register": "^7.12.10",
"@mishguru/eslint-config": "^6.0.0",
"@mishguru/eslint-typescript-config": "6.0.0",
"ava": "^3.15.0",
"chalk": "4.1.0",
"eslint": "7.17.0",
"eslint-utils": ">=2.1.0",
"file-exists": "5.0.1",
"flow-bin": "^0.142.0",
"flow-copy-source": "2.0.9",
"globby": "11.0.2",
"husky": "^4.3.7",
"lint-staged": "10.5.3",
"mkdirp": "1.0.4",
"nyc": "15.1.0",
"pkg-conf": "3.1.0",
"prettier": "2.2.1",
"read-pkg-up": "7.0.1",
"ts-node": "^9.1.1",
"typescript": "4.1.3",
"unwire": "6.1.0"
},
"devDependencies": {
"@types/mkdirp": "1.0.1",
"@types/node": "^14.14.20",
"@types/pkg-conf": "3.0.0",
"@types/read-pkg-up": "6.0.0"
},
"release-it": {
"scripts": {
"beforeStart": "npm run build"
}
}
}