-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "babel-plugin-pure-calls-annotation",
"version": "0.4.2",
"main": "lib/index.js",
"types": "src/index.ts",
"files": [
"lib",
"src"
],
"license": "WTFPL",
"author": "Morlay Null <morlay.null@gmail.com>",
"scripts": {
"prepublishOnly": "make build"
},
"devDependencies": {
"@babel/core": "~7.15.0",
"@babel/plugin-syntax-dynamic-import": "7.x",
"@types/babel__core": "~7.1.15",
"@types/babel__traverse": "~7.14.2",
"@types/jest": "~27.0.1",
"@types/node": "~16.7.10",
"jest": "~27.1.0",
"prettier": "~2.3.2",
"ts-jest": "~27.0.5",
"ts-node": "~10.2.1",
"typescript": "~4.4.2"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/traverse": "~7.15.0",
"@babel/types": "~7.15.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"tsx",
"ts",
"json",
"jsx",
"js"
],
"modulePaths": [
"<rootDir>"
],
"testRegex": ".*/__tests__/.+\\.(test|spec)\\.(ts|tsx)$"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morlay/babel-plugin-pure-calls-annotation.git"
},
"bugs": {
"url": "https://github.com/morlay/babel-plugin-pure-calls-annotation/issues"
},
"homepage": "https://github.com/morlay/babel-plugin-pure-calls-annotation#readme"
}