-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "node-event",
"version": "0.0.0",
"description": "node-event",
"license": "MIT",
"repository": "git@github.com:lifegadget/node-event.git",
"author": "Ken Snyder <ken@ken.net>",
"keywords": [
"node",
"logging",
"event",
"ember",
"lambda"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "mocha --compilers ts:ts-node/register --recursive test/**/*-spec.ts",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"dependencies": {
"axios": "^0.15.2",
"bluebird": "^3.4.6",
"console.table": "^0.7.0",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"stacktrace-js": "^1.3.1",
"uuid": "^3.0.0"
},
"devDependencies": {
"@types/axios": "^0.9.33",
"@types/bluebird": "^3.0.35",
"@types/chai": "3.4.30",
"@types/lodash": "^4.14.40",
"@types/mocha": "^2.2.33",
"@types/moment": "^2.13.0",
"@types/node": "6.0.31",
"@types/stacktrace-js": "^0.0.30",
"@types/uuid": "^2.0.29",
"chai": "^3.5.0",
"mocha": "^3.0.1",
"rimraf": "^2.5.4",
"test-console": "^1.0.0",
"ts-node": "^1.2.2",
"tslint": "^4.0.2",
"typescript": "^2.1.4"
},
"engines": {
"node": ">=4.0.0"
}
}