-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
{
"name": "twodollars",
"version": "1.0.23",
"author": "faeb187 <fabio.gartenmann@gmail.com>",
"description": "lightweight jQuery alternative",
"engines": {
"node": ">= 16.5.0"
},
"files": [
"dist"
],
"main": "./dist/main.min.js",
"types": "./dist/twodollars.d.ts",
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": [
"dist"
]
},
"scripts": {
"build": "webpack --config webpack.config.js",
"prepare": "npm run build",
"lint": "eslint . --ext .ts",
"test": "jest --verbose --forceExit --coverage --detectOpenHandles --passWithNoTests"
},
"repository": "github:faeb187/twodollars",
"homepage": "https://github.com/faeb187/twodollars#readme",
"bugs": {
"url": "https://github.com/faeb187/twodollars/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^3.9.10",
"webpack": "^5.57.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"deepmerge": "^4.2.2"
}
}