-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 965 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 965 Bytes
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
{
"name": "@evente/core",
"version": "1.0.3",
"description": "Javascript library for building reactive web applications",
"author": "Andrey Poprotsky",
"license": "MIT",
"homepage": "https://github.com/evente/core",
"main": "dist/evente.js",
"keywords": [
"evente",
"core",
"javascript",
"reactive"
],
"repository": {
"type": "git",
"url": "https://github.com/evente/core.git"
},
"bugs": {
"url": "https://github.com/evente/core/issues"
},
"scripts": {
"build": "node scripts/build.js",
"docs": "jsdoc --destination ./docs/ --readme README.md ./src",
"start": "node scripts/server.js",
"test": "madge -c ./src && jest"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"madge": "^4.0.2",
"uglify-js": "^3.13.4"
},
"jest": {
"collectCoverage": true,
"testMatch": [
"**/test/*.js"
],
"verbose": true
}
}