This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "cqrs-fx",
"version": "1.0.12",
"description": "基于nodejs的一个 Configurable 可配置、Extensible 可扩展、EventSourced 事件溯源、Object-oriented 面向对象 的CQRS框架。",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"watch": "babel src --watch --out-dir lib --source-maps",
"test": "node node_modules/mocha/bin/mocha --compilers js:babel-core/register ",
"test-all": "node node_modules/mocha/bin/mocha --compilers js:babel-core/register test/**/*_test.js",
"pub": "npm publish --registry http://registry.npmjs.org",
"test-debug": "node-debug --web-port=9900 node_modules/mocha/bin/_mocha --compilers js:babel-core/register "
},
"keywords": [
"cqrs",
"saas-plat",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/saas-plat/cqrs.git"
},
"author": "saas-plat.com",
"license": "MIT",
"dependencies": {
"assert": "^1.4.1",
"bull": "^2.2.6",
"i18next": "^8.1.0",
"log4js": "^1.1.1",
"mongodb": "^2.2.26",
"mysql": "^2.13.0",
"redis": "^2.6.0-1",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"webpack": "^1.12.14"
}
}