-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
51
52
53
54
55
{
"name": "jquery-es",
"version": "0.1.0",
"description": "Modern, lightweight jquery with more elegant syntax",
"keywords": [
"jquery",
"dom",
"es6",
"es-module",
"ajax",
"animate"
],
"main": "src/index.js",
"scripts": {
"lint": "npx eslint ./src",
"fix": "npx eslint --fix ./src",
"dev": "npx webpack serve --config webpack.dev.js",
"build": "npx webpack --config webpack.prod.js",
"test": "npx karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dananboom/jquery-es.git"
},
"author": "danan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dananboom/jquery-es/issues"
},
"homepage": "https://github.com/Dananboom/jquery-es#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-webpack-plugin": "^3.0.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^9.0.3",
"puppeteer": "^10.2.0",
"webpack": "^5.47.1",
"webpack-build-notifier": "^2.3.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-notifier": "^1.13.0"
},
"dependencies": {}
}