-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "@zooplus/zoo-web-components",
"version": "10.4.0",
"main": "dist/zoo-web-components.js",
"sideEffects": false,
"files": [
"dist/*.js",
"dist/**/*.js"
],
"type": "module",
"module": "dist/esm/zoo-web-components.js",
"description": "Set of web-components implementing zoo+ style guide",
"person": "Yuriy Kravets <yuriy.kravets@zooplus.com>",
"devDependencies": {
"axe-core": "^4.3.3",
"clean-css": "^5.1.5",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"html-minifier": "^4.0.0",
"html-validate": "^8.4.1",
"jasmine": "^3.9.0",
"nyc": "^15.1.0",
"puppeteer": "^22.11.2",
"puppeteer-to-istanbul": "^1.4.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0"
},
"scripts": {
"start": "concurrently -k \"node server.js docs\" \"cross-env NODE_ENV=local rollup -c -w\"",
"build": "rollup -c",
"pretest": "cross-env NODE_ENV=local npm run build",
"test": "concurrently -k -s first \"nyc --reporter=lcov --reporter=text-summary jasmine\" \"node server.js docs\"",
"prepublishOnly": "npm run lint && npm test && npm run build",
"lint": "eslint src/**/*.js && stylelint src/**/*.css && html-validate src/**/*.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zooplus/zoo-web-components.git"
},
"keywords": [
"web-components",
"shadow-dom",
"custom-elements",
"javascript",
"css",
"html"
],
"author": "Yuriy Kravets",
"license": "MIT",
"bugs": {
"url": "https://github.com/zooplus/zoo-web-components/issues"
},
"homepage": "https://github.com/zooplus/zoo-web-components#readme"
}