-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "maas",
"version": "0.0.1",
"description": "MongoDB as a Service",
"main": "./dist/maas.js",
"bin": "./dist/main.js",
"directories": {
"doc": "doc"
},
"scripts": {
"burstmake": "rimraf ./**/*.*~ && rimraf ./**/tsconfig.json && burstmake",
"typedoc": "typedoc",
"doc": "npm run typedoc -- --options typedoc.json --out ./doc/source ./src/ && apidoc -i src/ -o doc/api/ && ./scripts/deployDoc.sh --index doc",
"clean": "rimraf ./dist/*",
"build": "tsc -p ./src/ && mkdirp ./dist/public/tmp && tsc -p ./src/public/ && browserify ./dist/public/tmp/main.js -o ./dist/public/bundle.js && rimraf ./dist/public/tmp/ && cp -r ./src/public/src/static/ ./dist/public/",
"rebuild": "npm run clean && npm run build",
"dev-launch": "npm run rebuild && npm test && npm start",
"pretest": "tsc -p ./test/",
"test": "rimraf ./{src,test}/**/*.d.ts && istanbul cover _mocha ./test/**/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info",
"lint": "tslint ./{src,test}/**/*{.ts,.tsx}",
"typings": "typings install",
"start": "node ./dist/main.js",
"postinstall": "npm run burstmake && npm run typings && npm run build"
},
"engines": {
"node": "4.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/BugBusterSWE/MaaS"
},
"bugs": {
"url": "https://github.com/BugBusterSWE/MaaS/issues"
},
"keywords": [
"api",
"service",
"mongodb"
],
"author": "BugBusters [email protected]",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.1",
"browserify": "^13.0.1",
"burstmake": "latest",
"crypto-js": "^3.1.6",
"express": "^4.13.1",
"flux": "^2.1.1",
"helmet": "^2.0.0",
"history": "^2.1.1",
"jsonwebtoken": "^7.0.0",
"mkdirp": "^0.5.1",
"mongodb": "^2.1.18",
"mongoose": "^4.4.14",
"nodemailer": "0.7.1",
"promise": "^7.1.1",
"react": "^15.0.2",
"react-codemirror": "^0.2.6",
"react-dom": "^15.1.0",
"react-router": "^2.4.0",
"rimraf": "^2.5.2",
"superagent": "1.8.1",
"typescript": "^1.8.7",
"typings": "^0.8.1",
"uniq": "^1.0.1"
},
"devDependencies": {
"istanbul": "^0.4.3",
"apidoc": "^0.15.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"tslint": "^3.5.0",
"typedoc": "~0.3.12"
}
}