-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "babel-plugin-debug-tools",
"version": "1.0.28",
"description": "Helpers for debug Javascript Applications",
"repository": {
"type": "git",
"url": "https://github.com/teintinu/babel-plugin-debug-tools.git"
},
"license": "GPL3",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"scripts": {
"build": "NODE_ENV=production npx babel --config-file ./babel.config.json --out-file ./lib/index.js ./src/index.ts",
"prepare": "npm run build && npm test && npm run bhaskara",
"bhaskara": "cd sampleProject && npm i && npm test",
"test": "jest",
"dev": "jest --watchAll",
"ci": "jest",
"syntax-check": "npx tsc -p ./tsconfig.json"
},
"keywords": [
"babel-plugin",
"debug",
"log",
"trace",
"test",
"assert",
"console",
"tdd"
],
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/generator": "^7.15.4"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/plugin-transform-typescript": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.24",
"babel-jest": "^26.6.3",
"del-cli": "^3.0.1",
"jest": "^26.6.3",
"jest-file-snapshot": "^0.5.0",
"typescript": "^4.4.3"
}
}