UNPKG

2.08 kBJSONView Raw
1{
2 "name": "@mishguru/package",
3 "version": "7.3.0",
4 "description": "Utils for creating, building and testing NPM packages",
5 "main": "./dist/index.js",
6 "types": "./dist/index.d.ts",
7 "scripts": {
8 "build": "rm -rf ./dist && tsc",
9 "test": "npm run build && ava ./dist/**/*.spec.js",
10 "lint": "./bin/lint",
11 "prepublish": "npm run build",
12 "postpublish": "git push origin master --tags",
13 "tidy": "./bin/tidy"
14 },
15 "bin": {
16 "pkg-precommit": "./bin/precommit",
17 "pkg-build": "./bin/build",
18 "pkg-clean": "./bin/clean",
19 "pkg-coverage": "./bin/coverage",
20 "pkg-flow": "./bin/flow",
21 "pkg-lint": "./bin/lint",
22 "pkg-test": "./bin/test",
23 "pkg-tidy": "./bin/tidy"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/mishguruorg/package.git"
28 },
29 "author": "George Czabania <george@mish.guru>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/stayradiated/pkg/issues"
33 },
34 "homepage": "https://github.com/stayradiated/pkg#readme",
35 "dependencies": {
36 "@babel/core": "7.5.5",
37 "@babel/plugin-proposal-object-rest-spread": "7.5.5",
38 "@babel/plugin-transform-modules-commonjs": "7.5.0",
39 "@babel/plugin-transform-shorthand-properties": "7.2.0",
40 "@babel/preset-env": "7.5.5",
41 "@babel/preset-flow": "7.0.0",
42 "@babel/register": "7.5.5",
43 "@mishguru/eslint-config": "5.8.0",
44 "@mishguru/eslint-typescript-config": "5.14.1",
45 "ava": "2.2.0",
46 "chalk": "2.4.2",
47 "file-exists": "5.0.1",
48 "flow-bin": "0.104.0",
49 "flow-copy-source": "2.0.7",
50 "globby": "10.0.1",
51 "husky": "3.0.2",
52 "lint-staged": "9.2.1",
53 "mkdirp": "0.5.1",
54 "nyc": "14.1.1",
55 "pkg-conf": "3.1.0",
56 "prettier": "1.18.2",
57 "read-pkg-up": "6.0.0",
58 "ts-node": "8.3.0",
59 "typescript": "3.5.3",
60 "unwire": "6.1.0"
61 },
62 "devDependencies": {
63 "@types/mkdirp": "0.5.2",
64 "@types/node": "12.6.9",
65 "@types/pkg-conf": "3.0.0",
66 "@types/read-pkg-up": "6.0.0"
67 },
68 "release-it": {
69 "scripts": {
70 "beforeStart": "npm run build"
71 }
72 }
73}