-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 2.72 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
{
"name": "pectin-monorepo",
"version": "0.0.0-ignore",
"description": "Pectin makes fruit-rollups stronger",
"author": "Daniel Stockman <[email protected]>",
"homepage": "https://github.com/evocateur/pectin#readme",
"license": "ISC",
"private": true,
"engines": {
"npm": ">=5.6.0",
"node": ">=8.9"
},
"bin": {
"pectin": "packages/pectin-cli/bin/pectin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evocateur/pectin.git"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --build --verbose",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --ignore-path .gitignore --ext js,ts .",
"pretest": "npm run lint",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{yaml,yml}": [
"prettier --write",
"git add"
],
"*.[jt]s": [
"eslint --fix",
"jest --find-related-tests",
"git add"
]
},
"dependencies": {
"@pectin/api": "file:packages/pectin-api",
"@pectin/babelrc": "file:packages/pectin-babelrc",
"@pectin/core": "file:packages/pectin-core",
"pectin": "file:packages/pectin",
"rollup-config-pectin": "file:packages/rollup-config-pectin",
"rollup-plugin-main-entry": "file:packages/rollup-plugin-main-entry",
"rollup-plugin-subpath-externals": "file:packages/rollup-plugin-subpath-externals"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@babel/runtime-corejs2": "^7.7.4",
"@babel/runtime-corejs3": "^7.7.4",
"@lerna/project": "^3.18.0",
"@lerna/run-topologically": "^3.18.5",
"@schemastore/package": "^0.0.5",
"@types/clone-deep": "^4.0.1",
"@types/cosmiconfig": "^5.0.3",
"@types/jest": "^24.0.23",
"@types/npm-package-arg": "^6.1.0",
"@types/npmlog": "^4.1.2",
"@types/touch": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-core": "^7.0.0-bridge.0",
"builtin-modules": "^3.1.0",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"eslint": "^6.7.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-zillow": "^3.5.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"p-map": "^3.0.0",
"prettier": "^1.19.1",
"prettier-config-zillow": "^1.1.1",
"resolve-from": "^5.0.0",
"rollup": "^1.27.8",
"tacks": "^1.3.0",
"tempy": "^0.3.0",
"touch": "^3.1.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"yargs": "^14.2.2"
}
}