forked from vizzuhq/vizzu-story-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "vizzu-story",
"version": "0.2.1",
"description": "A presentation extension for the Vizzu charting library to create presentations with animated data visualisations with ease.",
"main": "dist/vizzu-story.min.js",
"type": "module",
"files": [],
"scripts": {
"test": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --verbose",
"prepare": "husky install",
"check": "npm-run-all check-prettier check-eslint test",
"prettier": "prettier -w '**/*js'",
"check-prettier": "prettier -c '**/*js'",
"eslint": "eslint --fix '**/*js'",
"check-eslint": "eslint '**/*js'",
"rollup": "rm -rf dist && rollup -c",
"pack": "rm -rf build && mkdir -p build && npm pack --pack-destination build && tar -ztvf build/*.tgz",
"build": "npm-run-all rollup pack"
},
"repository": {
"type": "git",
"url": "https://github.com/vizzuhq/vizzu-ext-js-story.git"
},
"keywords": [
"template",
"interactive",
"presentation",
"data-visualization",
"charting",
"vizzu"
],
"author": "Vizzu Kft.",
"license": "Apache-2.0",
"homepage": "https://github.com/vizzuhq/vizzu-ext-js-story#readme",
"url": "https://github.com/vizzuhq/vizzu-ext-js-story/issues",
"devDependencies": {
"npm-run-all": "^4.1.5",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2"
}
}