-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "domini",
"version": "0.2.8",
"description": "Minimalistic DOM manipulation tool",
"main": "dist/domini.js",
"types": "domini.d.ts",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"test": "nodemon ./test/server.js",
"test:karma": "karma start",
"build:dev": "webpack --mode=development --watch",
"build:prod": "webpack --mode=production --node-env=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anag0/domini.git"
},
"keywords": [
"dom",
"dom manipulation",
"library",
"dom library",
"jquery alternative"
],
"files": [
"dist",
"types.d.ts",
"domini.d.ts",
"examples.html",
"readme.md"
],
"author": "Ernest Marcinko",
"license": "ISC",
"bugs": {
"url": "https://github.com/anag0/domini/issues"
},
"homepage": "https://dominijs.com",
"devDependencies": {
"express": "^4.18.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-qunit": "^4.1.2",
"nodemon": "^2.0.22",
"qunit": "^2.19.4",
"webpack": "^5.83.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.5.4"
}
}