-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "@smartface/router",
"version": "2.4.1",
"description": "Smmartface Router",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"pretty": "prettier --write src/**/**",
"build": "tsc",
"watch": "tsc -w",
"docs": "rm -rf docs && node typedoc.js",
"dev": "tsc -w --project tsconfig.dev.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartface/router.git"
},
"author": "Cenk Cetinkaya",
"license": "MIT",
"bugs": {
"url": "https://github.com/cenkce/router/issues"
},
"homepage": "https://github.com/cenkce/router#readme",
"dependencies": {
"path-to-regexp": "^2.4.0",
"resolve-pathname": "^2.2.0"
},
"peerDependenciesMeta": {
"@smartface/native": {
"optional": true
}
},
"devDependencies": {
"@smartface/native": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^3.2.3",
"jest": "^27.1.0",
"jsdoc-to-markdown": "^6.0.1",
"npm-bump": "0.0.30",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typedoc": "beta",
"typescript": "4.6.2"
},
"peerDependencies": {
"@smartface/native": "^5.0.0"
}
}