-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
45
46
47
{
"name": "angular-gitter-replybot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "public",
"url": "https://github.com/Toxicable/angular-gitter-replybot"
},
"scripts": {
"start": "node ./index.js",
"build": "node copy-gitter-token.js && npm run clean && tsc -p tsconfig.app.json && cpy package.json dist && cpy ngbot-853199833b9e.json dist && cpy app.yaml dist",
"clean": "rimraf dist",
"test": "karma start --single-run",
"test:watch": "karma start",
"lint": "tslint spec/**/*.ts src/**/*.ts --force"
},
"author": "Fabian Wiles",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"marked": "^0.3.6",
"node-gitter": "^2.0.5",
"request": "^2.79.0",
"rxjs": "^5.0.3",
"semver": "^5.3.0"
},
"devDependencies": {
"@types/cheerio": "^0.17.31",
"@types/jasmine-node": "^1.14.30",
"@types/marked": "^0.0.28",
"@types/node": "^7.0.4",
"@types/semver": "^5.3.30",
"cpy-cli": "^1.0.1",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"jasmine-node": "^1.14.5",
"jasmine-node-debug": "^0.1.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-typescript": "^3.0.0",
"rimraf": "^2.5.4",
"tslint": "^4.4.1",
"typescript": "^2.1.5"
}
}