-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "@kospa/router",
"version": "0.1.4",
"description": "Router component for kospa framework",
"homepage": "https://github.com/spatools/kospa-router",
"author": "Touchify (dev@touchify.co)",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/spatools/kospa-router.git"
},
"bugs": {
"url": "https://github.com/spatools/kospa-router/issues"
},
"files": [
"index.js",
"index.d.ts",
"package.json"
],
"scripts": {
"test": "npm run build",
"build": "tsc -p .",
"build-release": "(rmdir /S /Q dist || echo continue) && tsc -p . --outDir dist && copy package.json dist && copy bower.json dist",
"prepublishOnly": "npm run build",
"prerelease": "npm run build-release && cd dist && git init && git remote add origin %npm_package_homepage% && git fetch --update-head-ok --depth=1 origin release && git branch --track release origin/release && git symbolic-ref HEAD refs/heads/release && git reset",
"release": "cd dist && git add * && git commit -m \"Release %npm_package_version%\" && git tag %npm_package_version% && git push origin release && git push --tags"
},
"keywords": [
"kospa",
"knockout",
"ko",
"spa",
"framework",
"router",
"app"
],
"dependencies": {
"@kospa/base": "^0.1.7"
},
"devDependencies": {
"typescript": "^3.3.3"
}
}