forked from zakarialaoui10/ziko.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
{
"name": "ziko",
"version": "0.0.19",
"description": "a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities",
"keywords": [
"front-end",
"framework",
"zikojs",
"ziko",
"math",
"user-interface",
"time",
"data",
"svg",
"canvas",
"reactivity",
"dom",
"single page application",
"file based routing"
],
"type": "module",
"main": "dist/ziko.mjs",
"module": "dist/ziko.mjs",
"unpkg": "dist/ziko.min.js",
"files": [
"src",
"dist",
"LICENCE"
],
"exports": {
".": {
"import": "./dist/ziko.mjs",
"require": "./dist/ziko.cjs"
}
},
"bin": {
"create-ziko-app": "starter/bin/index.js"
},
"scripts": {
"test": "npx jasmine --config=jasmine.json",
"test-link": "node _link/index.js",
"lint": "eslint src/*/*/*",
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js",
"watch": "cross-env NODE_ENV=development rollup --config rollup.config.js -w",
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakarialaoui10/ziko.js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "zakaria elalaoui",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakarialaoui10/ziko.js/issues"
},
"homepage": "https://github.com/zakarialaoui10/ziko.js#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-plugin-spellcheck": "^0.0.20",
"jasmine": "^5.3.0",
"rollup": "^4.1.5",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1"
}
}