-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "unjquerify",
"version": "1.0.0",
"description": "AST-based tool for converting jQuery code to modern vanilla JavaScript",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"test": "mocha -r ts-node/register ./test/**/*.ts",
"lint": "tslint -p .",
"clone-jquery": "git clone https://github.com/jquery/jquery.git ./test/jquery/repo && git --git-dir=./test/jquery/repo/.git --work-tree ./test/jquery/repo checkout 821bf34353a6baf97f7944379a6459afb16badae",
"prepublishOnly": "rm -rf build && tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/template": "^7.0.0-beta.46",
"babel-core": "^6.26.3",
"camelcase": "^5.0.0",
"command-line-parser": "^0.1.10",
"escape-string-regexp": "^1.0.5",
"jquery": "^3.3.1"
},
"devDependencies": {
"@types/babel-core": "^6.25.3",
"@types/camelcase": "^4.1.0",
"@types/jest": "^23.1.3",
"@types/node": "^9.6.6",
"@types/puppeteer": "^1.2.2",
"jest": "^23.2.0",
"puppeteer": "^1.3.0",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript": "^2.9.2"
}
}