-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
68
69
{
"name": "babel-plugin-transform-amd-to-commonjs",
"version": "1.6.0",
"description": "Transforms AMD code to CommonJS",
"main": "build/index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "babel src --out-dir build",
"prepack": "npm run build",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate"
},
"files": [
"build"
],
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msrose/babel-plugin-transform-amd-to-commonjs.git"
},
"keywords": [
"babel",
"babel-plugin",
"amd",
"commonjs"
],
"author": "Michael Rose <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/msrose/babel-plugin-transform-amd-to-commonjs/issues"
},
"homepage": "https://github.com/msrose/babel-plugin-transform-amd-to-commonjs#readme",
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.24.4",
"all-contributors-cli": "^6.26.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"eslint": "^8.57.0",
"eslint-config-msrose": "^1.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-diff": "^29.7.0",
"prettier": "^3.3.3",
"regenerator-runtime": "^0.14.1"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/examples"
]
}
}