-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.62 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
{
"name": "@af-modules/router",
"version": "1.0.2",
"description": "A single page web application router",
"main": "main.js",
"scripts": {
"build": "gulp --gulpfile .travis/Gulpfile.js --cwd ./",
"test": "node_modules/.bin/mocha .travis/main.js",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- .travis/main.js --report json",
"remap-core": "node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage/mapped.json -b ./",
"remap-cov": "npm run coverage && npm run remap-core && ./node_modules/.bin/istanbul report --include \"coverage/mapped.json\" lcov",
"coveralls": "npm run remap-cov && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"application-frame",
"af-module",
"router"
],
"author": "Jovan Gerodetti (TitanNano)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"application-frame": "^1.0.0",
"callsite": "^1.0.0",
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"coveralls": "^3.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-sourcemaps": "^3.0.0",
"istanbul": "^0.4.5",
"merge-stream": "^2.0.0",
"mocha": "^8.2.1",
"natives": "^1.1.6",
"remap-istanbul": "^0.13.0"
},
"bugs": {
"url": "https://github.com/TitanNanoDE/af-router/issues"
},
"homepage": "https://github.com/TitanNanoDE/af-router#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TitanNanoDE/af-router.git"
}
}