-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "clan-server",
"version": "0.0.59",
"description": "A functional, observable-and-worker-backed hyper simple framework with slightly opinionated use-cases",
"main": "build/index.js",
"scripts": {
"prestart": "rimraf build/*",
"start": "tsc -w src/*.ts --outDir build -d",
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV=production tsc src/index.ts --outDir build -d; echo 'done.';",
"commit": "git add . && git commit -am \"comitting and pushing new patch version\"",
"push": "git push origin --all",
"deploy": "npm-run-all build commit n push",
"n": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git@github.com/matthiasak/clan-server"
},
"keywords": [
"fp",
"observables",
"immutable",
"data",
"server"
],
"author": "@matthiasak",
"license": "MIT",
"devDependencies": {
"cross-env": "^4.0.0",
"npm-run-all": "^4.0.2",
"release": "^1.0.6",
"rimraf": "^2.6.1",
"typescript": "^2.2.2"
},
"dependencies": {
"clan-fp": "^0.0.63",
"etag": "^1.8.0"
}
}