-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.47 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
95
96
97
98
99
{
"name": "macrome",
"version": "0.1.0",
"description": "A build system for checked in assets",
"main": "lib/index",
"exports": {
".": "./lib/index.js"
},
"bin": {
"macrome": "./bin/cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"bin/**"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"format": "prettier --write '**/*.{js,json,md}'",
"build": "tsc",
"test": "jest",
"verify": "run-s lint test"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --quiet"
],
"*.{md,json}": [
"prettier -c"
]
},
"keywords": [
"build",
"macro",
"generate",
"generator",
"babel"
],
"repository": "[email protected]:conartist6/macrome.git",
"author": "Conrad Buck <[email protected]>",
"license": "MIT",
"dependencies": {
"@conartist6/rd-parse": "4.0.0-rc.0",
"@iter-tools/queue": "^1.5.1",
"@iter-tools/regex": "^0.1.3",
"@types/fb-watchman": "^2.0.1",
"camelize": "^1.0.0",
"errawr": "conartist6/errawr#b5437bd44c30a01d99cb9dabbddc98ebeb0724c9",
"fb-watchman": "^2.0.1",
"find-up": "^4.1.0",
"git-state": "^4.1.0",
"ignore": "^5.1.8",
"import-fresh": "^3.2.1",
"iter-tools-es": "^7.0.2",
"log": "^6.0.0",
"log-node": "^7.0.0",
"micromatch": "^4.0.2",
"minimist": "^1.2.5",
"path-complete-extname": "^1.0.0",
"picomatch": "^2.0.7",
"prettier": "^2.3.1",
"read-chunk": "^3.2.0",
"strip-ansi": "^6.0.1",
"strtok3": "^6.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@types/babel__traverse": "^7.14.2",
"@types/invariant": "^2.2.34",
"@types/jest": "^27.0.1",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.4.13",
"@types/picomatch": "^2.3.0",
"@types/recursive-readdir": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.30.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"jest-snapshot": "^27.4.6",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"sha1": "^1.1.1",
"typescript": "^4.5.5"
}
}