-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.52 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": "pip-services3-commons-node",
"version": "3.0.8",
"author": "Conceptual Vision Consulting LLC",
"description": "Portable abstractions and patterns for Pip.Services in Node.js",
"contributors": [
{
"name": "Sergey Seroukhov",
"email": "[email protected]"
},
{
"name": "Volodymyr Tkachenko",
"email": "[email protected]"
},
{
"name": "Mark Zontak",
"email": "[email protected]"
}
],
"main": "./obj/src/index.js",
"typings": "./obj/src/index.d.ts",
"keywords": [
"pip.services",
"microservice",
"commons",
"library"
],
"noAnalyze": true,
"repository": {
"type": "git",
"url": "ssh://[email protected]:pip-services3-node/pip-services3-commons-node.git"
},
"license": "MIT",
"engines": {
"node": ">=0.6.14"
},
"private": false,
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha -t 10000 -R spec -u tdd --recursive ./obj/test",
"retest": "tsc && mocha -t 10000 -R spec -u tdd --recursive ./obj/test"
},
"dependencies": {
"async": "^2.1.0",
"lodash": "^4.17.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"@types/async": "^2.0.0",
"@types/chai": "*",
"@types/lodash": "^4.0.0",
"@types/mocha": "*",
"@types/node": "*",
"chai": "^3.5.0",
"mocha": "^2.2.0"
}
}