-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
63 lines (63 loc) · 1.89 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
{
"name": "dom7-src",
"version": "4.0.6",
"description": "Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API",
"sideEffects": false,
"main": "dom7.cjs.js",
"types": "dom7.d.ts",
"jsnext:main": "dom7.esm.js",
"module": "dom7.esm.js",
"scripts": {
"build:dev": "cross-env NODE_ENV=development node ./scripts/build",
"build:prod": "cross-env NODE_ENV=production node ./scripts/build",
"serve": "serve",
"prettier": "prettier \"**/*.+(js|json|scss)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.ts,.tsx .",
"test": "node ./scripts/test.mjs",
"validate": "npm-run-all --parallel test check-format lint",
"release": "npm run validate && node ./scripts/release",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolimits4web/dom7.git"
},
"keywords": [
"dom",
"dom7",
"jquery",
"mobile",
"framework7"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nolimits4web/dom7/issues"
},
"homepage": "https://framework7.io/docs/dom7.html",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"exec-sh": "^0.4.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rollup": "^2.53.3",
"serve": "^12.0.0",
"terser": "^5.7.1"
},
"dependencies": {
"ssr-window": "^4.0.0"
}
}