-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "super-expressive.macro",
"version": "0.0.0-semantically-released",
"description": "A macro to generate regular expressions at build-time with super-expressive",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "kcd-scripts build",
"build:example": "npm run build && cd example && kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"validate": "kcd-scripts validate"
},
"keywords": [
"babel",
"babel-plugin",
"babel-plugin-macros",
"super-expressive",
"regex"
],
"repository": {
"type": "git",
"url": "https://github.com/arthurdenner/super-expressive.macro"
},
"bugs": {
"url": "https://github.com/arthurdenner/super-expressive.macro/issues"
},
"homepage": "https://github.com/arthurdenner/super-expressive.macro#readme",
"author": "Arthur Denner <[email protected]>",
"license": "MIT",
"peerDependencies": {
"super-expressive": "1.4.0"
},
"devDependencies": {
"@types/babel-plugin-macros": "2.8.4",
"babel-plugin-tester": "10.0.0",
"kcd-scripts": "8.1.0",
"super-expressive": "1.4.0",
"typescript": "4.2.3"
},
"dependencies": {
"@babel/runtime": "7.13.10",
"@babel/traverse": "7.13.0",
"babel-plugin-macros": "3.0.1"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"@typescript-eslint/prefer-ts-expect-error": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"max-lines-per-function": "off",
"no-eval": "off",
"no-useless-escape": "off"
}
},
"babel": {
"presets": [
"kcd-scripts/babel"
]
}
}