-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
86 lines (86 loc) · 2.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jquery-to-js",
"version": "0.1.3",
"description": "Automatically find and generate vanilla js alternatives for jQuery methods.",
"source": "src/jquery-to-js-browser.js",
"main": "dist/main.js",
"outputFormat": "global",
"isLibrary": "false",
"targets": {
"umd": {
"context": "browser",
"includeNodeModules": true,
"engines": {
"browsers": [
"last 1 version"
]
},
"outputFormat": "global",
"distDir": "./dist",
"sourceMap": true,
"publicUrl": "./"
}
},
"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",
"watch:browser": "parcel watch",
"build:browser": "parcel build"
},
"author": "Sachin Neravath",
"license": "MIT",
"dependencies": {
"babylon": "^6.18.0",
"browserify": "^17.0.0",
"colors": "^1.4.0",
"commander": "^7.2.0",
"espree": "^7.3.1",
"estraverse": "^4.3.0",
"estree-walker": "^3.0.0",
"fast-glob": "^3.2.6",
"fs-extra": "^10.0.0",
"jquery": "^3.6.0",
"jsdom": "^16.6.0",
"prettier": "2.3.1",
"prompts": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@parcel/transformer-inline-string": "^2.12.0",
"@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",
"buffer": "^6.0.3",
"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",
"parcel": "^2.12.0",
"shelljs": "^0.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sachinchoolur/jquery-to-javascript-converter.git"
},
"keywords": [
"jquery"
],
"bugs": {
"url": "https://github.com/sachinchoolur/jquery-to-javascript-converter/issues"
},
"homepage": "https://github.com/sachinchoolur/jquery-to-javascript-converter#readme",
"bin": {
"jquery-to-js": "./cli.js"
}
}