This repository has been archived by the owner on May 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.1 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "leafeon",
"version": "2.1.20",
"description": "Client-sided and dependency-free Javascript routing library",
"author": "Sundowndev",
"main": "lib/leafeon",
"types": "lib/leafeon.d.ts",
"directories": {
"src": "src"
},
"scripts": {
"build:ts": "rimraf lib dist && tsc",
"build:webpack": "rimraf dist && webpack --config webpack.config.js && webpack --config webpack.config.min.js",
"build": "npm run build:ts && npm run build:webpack",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --compilers ts:ts-node/register \"test/**/*.spec.ts\" --exit",
"test:coverage": "nyc npm test",
"lint": "tslint -c tslint.json --project tsconfig.json \"src/**/*.ts\"",
"release": "git push --follow-tags && npm publish"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"report-dir": "./reports/coverage",
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/SundownDEV/leafeon.git"
},
"files": [
"dist",
"lib"
],
"keywords": [
"router",
"javascript",
"library",
"front-end",
"routing",
"routerjs",
"client-side-routing"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SundownDEV/leafeon/issues"
},
"homepage": "https://github.com/SundownDEV/leafeon#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.113",
"@types/sinon": "^2.3.7",
"@types/sinon-chai": "^2.7.33",
"awesome-typescript-loader": "^3.5.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.14.0",
"ts-node": "^3.3.0",
"tslint": "^4.3.1",
"tslint-microsoft-contrib": "4.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^3.3.2"
}
}