-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 954 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 954 Bytes
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
{
"name": "@norjs/cloud-common",
"version": "1.3.3",
"description": "Common files for NorJS's cloud framework",
"main": "dist/index.js",
"scripts": {
"compile-watch": "babel --watch -d dist/ src/",
"compile": "babel -d dist/ src/",
"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/sendanor/cloud-common.git"
},
"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",
"mocha": "^5.2.0",
"sinon": "^7.2.2"
},
"dependencies": {
"@norjs/debug": "^1.3.3",
"lodash": "^4.17.11",
"uuid": "^3.3.2"
}
}