-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 796 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
{
"name": "@librark/routark",
"version": "0.7.4",
"description": "Single Page Application Router",
"main": "lib/index.js",
"type": "module",
"directories": {
"lib": "lib",
"test": "tests"
},
"jest": {
"transform": {}
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' npx jest --coverage",
"trial": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/librark/routark.git"
},
"keywords": [
"spa",
"router"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/librark/routark/issues"
},
"homepage": "https://github.com/librark/routark#readme",
"devDependencies": {
"jest": "^29.7.0"
}
}