-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "ursa-password-encryptor",
"version": "1.0.0",
"main": "server/server.js",
"scripts": {
"start": "node .",
"watch": "nodemon --debug --watch common .",
"lint": "eslint common",
"lint:watch": "chokidar 'common/**/*.js' -c 'npm run lint'",
"spec": "find ./common -name '*.spec.js' | xargs ./node_modules/mocha/bin/_mocha -R spec --report html",
"spec:coverage": "find ./common -name '*.spec.js' | xargs ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -x '*spec.js' --report html -- -R spec",
"spec:watch": "chokidar 'common/**/*.js' -c 'mocha --recursive ./**/*.spec.js'",
"pretest": "jshint .",
"posttest": "nsp check"
},
"dependencies": {
"assert-plus": "^1.0.0",
"bluebird": "^3.3.5",
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^1.3.0",
"loopback": "^2.22.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^2.4.0",
"loopback-datasource-juggler": "^2.39.0",
"serve-favicon": "^2.0.1",
"ursa": "^0.9.4",
"verror": "^1.6.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chokidar-cli": "^1.2.0",
"eslint": "^2.8.0",
"eslint-config-eslint": "^3.0.0",
"jshint": "^2.5.6",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"nsp": "^2.1.0",
"pre-commit": "^1.1.2",
"sinon": "^1.17.4"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "ursa-password-encryptor",
"pre-commit": [
"lint",
"spec"
]
}