-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.21 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
{
"name": "jsx2tokens",
"version": "0.2.9",
"description": "Tokenizer for js, jsx, (ts, tsx)",
"keywords": [
"js",
"ts",
"jsx",
"tsx",
"tokenize"
],
"license": "MIT",
"homepage": "https://github.com/wareset/jsx2tokens#readme",
"bugs": {
"url": "https://github.com/wareset/jsx2tokens/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wareset/jsx2tokens.git"
},
"author": "rease <[email protected]>",
"main": "index",
"module": "index.mjs",
"types": "types/index.d.ts",
"files": [
"README.md",
"index.d.ts",
"index.js",
"index.mjs",
"types/**/*"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"test": "jest --",
"test-custom": "node ./test-custom/index.js",
"build": "dester --ie -m",
"dev": "dester --ie -mw"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/test/fixtures/"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"dester": "1.0.x",
"esprima": "^4.0.1",
"jest": "^29.3.1",
"typescript": "^4.9.4"
}
}