-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
{
"name": "dendritic",
"version": "2.0.0",
"description": "",
"main": "index.js",
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Prismatik/dendritic.git"
},
"bin": {
"dendritic": "./index.js"
},
"scripts": {
"lint": "eslint .",
"test": "DENDRITIC_LOG_LEVEL=silent node test",
"testdendritic": "mocha",
"watch": "chokidar '.' -c 'npm test' -i '/node_modules|dendritic_tests/' -d 2000",
"dockertest": "docker-compose run dendritic npm test",
"dockerwatch": "docker-compose run dendritic npm run watch",
"precommit": "npm run lint"
},
"dependencies": {
"lodash": "^4.15.0",
"loglevel": "^1.4.1",
"mkdirp": "^0.5.1",
"mustache": "^2.2.0",
"pluralize": "^3.0.0",
"rimraf": "^2.5.4",
"to-pascal-case": "^1.0.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"ajv": "^4.6.1",
"bandname": "^1.0.0",
"body-parser": "^1.15.2",
"bunyan": "^1.8.1",
"chokidar-cli": "^1.2.0",
"co-mocha": "^1.1.3",
"cors": "^2.8.0",
"dotenv-safe": "^2.3.1",
"doubleagent": "^1.1.0",
"eslint": "^3.4.0",
"eslint-config-prismatik": "^2.2.0",
"express": "^4.14.0",
"express-jwt": "^3.4.0",
"express-yields": "^1.0.0",
"husky": "^0.11.6",
"istanbul": "^0.4.5",
"json-schema-deref-sync": "^0.3.2",
"json-schema-faker": "^0.3.6",
"jsonwebtoken": "^7.1.9",
"mocha": "^3.0.2",
"must": "^0.13.2",
"simple-password": "^1.0.1",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"standard-http-error": "^2.0.0",
"thinky": "^2.3.6",
"uuid": "^2.0.2"
},
"engines": {
"node": "^6.1.0",
"npm": "^3.8.6"
}
}