-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "purplebot",
"version": "1.0.0",
"description": "IRC Bot for PPD",
"main": "src/index.js",
"author": "Sumant Manne <sumant.manne@gmail.com> (https://github.com/dpyro)",
"license": "MIT",
"scripts": {
"clean": "rm -r *.log*",
"start": "./node_modules/ts-node/dist/bin.js --no-cache src/index.ts",
"test": "./node_modules/mocha/bin/mocha --compilers ts:ts-node/register,js:babel-register",
"eslint": "./node_modules/eslint/bin/eslint.js **/*.js",
"tslint": "./node_modules/tslint/bin/tslint --project tsconfig.json **/*.ts",
"doc": "rm -rf doc/* && ./node_modules/typedoc/bin/typedoc"
},
"dependencies": {
"@types/fs-extra": "^3.0.3",
"@types/irc": "^0.3.32",
"@types/lodash": "^4.14.66",
"@types/mime-types": "^2.1.0",
"@types/nconf": "^0.0.34",
"@types/node": "^7.0.31",
"@types/request": "^0.0.43",
"@types/sqlite3": "^3.1.0",
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bluebird": "^3.5.0",
"irc": "dpyro/node-irc#socket-uri",
"jsdom": "^11.0.0",
"lodash": "^4.17.4",
"mime-types": "^2.1.15",
"nconf": "^0.8.4",
"request": "^2.81.0",
"sqlite3": "^3.1.8",
"ts-node": "^3.0.6",
"typescript": "^2.3.4",
"universalify": "dpyro/universalify",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"babel-eslint": "^7.2.3",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.0.0",
"fs-extra": "^3.0.1",
"jsdoc": "^3.4.3",
"jsdoc-strip-async-await": "^0.1.0",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"standard": "^10.0.1",
"stream-buffers": "^3.0.1",
"tslint": "^5.4.3",
"tslint-config-standard": "^5.0.2",
"typedoc": "^0.7.0"
}
}