-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@norjs/backend",
"version": "1.3.4",
"description": "NorJS Backend Server",
"main": "dist/index.js",
"bin": {
"norjs-backend": "bin/main.sh"
},
"scripts": {
"compile": "babel src --out-dir dist",
"compile-examples": "babel examples --out-dir dist/examples",
"compile-watch": "babel --watch src --out-dir dist",
"compile-docs": "jsdoc --verbose --pedantic -c jsdoc.json",
"prepare": "npm run -s compile",
"pretest": "npm run -s compile",
"test": "mocha --require @babel/register test/unit/**/*.spec.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/norjs/backend.git"
},
"keywords": [
"cloud",
"backend"
],
"author": "Jaakko-Heikki Heusala <jheusala@iki.fi>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/cli": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"docdash": "^0.4.0",
"es6-promise": "^4.2.5",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"nyc": "^11.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@norjs/cloud-client": "^1.3.3",
"@norjs/cloud-common": "^1.3.3",
"@norjs/debug": "^1.3.3",
"@norjs/errors": "^1.3.3",
"@norjs/ref": "^1.3.3",
"apache-md5": "^1.1.2",
"globals": "^10.0.0",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"moment": "^2.23.0",
"reserved-words": "^0.1.1",
"resolve": "^1.9.0",
"socket.io": "^2.2.0",
"uuid": "^3.1.0"
}
}