-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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
{
"name": "@parachutehome/create-title.macro",
"version": "2.0.0",
"description": "Automatically create storybook titles using a babel macro",
"main": "dist/macro.js",
"types": "macro.d.ts",
"keywords": [
"babel-macro",
"babel-plugin-macro",
"babel-macros",
"babel-plugin-macros",
"storybook",
"create title",
"auto create title"
],
"homepage": "https://github.com/parachutehome/create-title.macro#readme",
"bugs": {
"url": "https://github.com/parachutehome/create-title.macro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/parachutehome/create-title.macro.git"
},
"contributors": [
{
"name": "Rogelio Negrete",
"url": "https://github.com/Weffe"
}
],
"scripts": {
"start": "tsc --watch",
"tsc": "tsc",
"clean": "rimraf dist",
"build": "run-s clean tsc",
"pretest": "run-s build",
"test": "jest",
"lint": "eslint . --ext .ts --fix",
"docs": "docsify serve docs --open"
},
"peerDependencies": {
"babel-plugin-macros": ">=2.x"
},
"dependencies": {
"pkg-dir": "5.0.0",
"upath": "2.0.1"
},
"devDependencies": {
"@babel/core": "7.12.17",
"@babel/preset-env": "7.12.17",
"@babel/types": "7.12.17",
"@types/babel-plugin-macros": "2.8.4",
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"babel-jest": "26.6.3",
"babel-plugin-macros": "3.0.1",
"babel-plugin-tester": "10.0.0",
"docsify-cli": "4.4.2",
"eslint": "7.20.0",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.1.5"
},
"license": "ISC"
}