-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "@xlnt/micro-api-auth",
"version": "1.0.0",
"description": "A simple API authorization lib for micro",
"main": "lib/index.js",
"scripts": {
"prepare": "yarn run build",
"build": "yarn run build-ts && yarn run tslint",
"ts-start": "ts-node src/index.ts",
"start": "node lib/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint --project ."
},
"files": [
"lib"
],
"keywords": [
"gnarly"
],
"repository": {
"type": "git",
"url": "[email protected]:XLNT/micro-api-auth"
},
"author": "Matt Condon <[email protected]>",
"license": "Apache-2.0",
"peerDependencies": {},
"devDependencies": {
"@types/node": "^10.3.2",
"ts-node": "^6.0.3",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
}
}