forked from sachinchoolur/jquery-to-javascript-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "replace-jquery",
"version": "0.0.2",
"description": "Automatically find and generate vanilla js alternatives for jQuery methods.",
"main": "index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js -w",
"make-badges": "istanbul-badges-readme",
"test": "jest --coverage",
"lint:scripts": "eslint 'src/**/*.js'",
"lint:methods": "eslint 'methods/**/*.js'",
"test:watch": "jest --watch --coverage",
"postinstall": "node tools/build-all-jquery-methods.js"
},
"author": "Sachin Neravath",
"license": "MIT",
"dependencies": {
"babylon": "^6.18.0",
"colors": "^1.4.0",
"commander": "^7.2.0",
"espree": "^7.3.1",
"estraverse": "^4.3.0",
"estree-walker": "^3.0.0",
"fs-extra": "^10.0.0",
"prompts": "^2.4.1",
"fast-glob": "^3.2.6",
"prettier": "2.3.1",
"jquery": "^3.6.0",
"jsdom": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^13.1.9",
"babel-jest": "^27.0.2",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"istanbul-badges-readme": "^1.4.0",
"jest": "^27.0.4",
"shelljs": "^0.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sachinchoolur/replace-jquery.git"
},
"keywords": [
"jquery"
],
"bugs": {
"url": "https://github.com/sachinchoolur/replace-jquery/issues"
},
"homepage": "https://github.com/sachinchoolur/replace-jquery#readme",
"bin": {
"replace-jquery": "./cli.js"
}
}