-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "@orchejs/rest",
"version": "0.4.0",
"description": "Orche - REST module",
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=6.9.0"
},
"dependencies": {
"@orchejs/common": "^0.3.1",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/chai": "^4.0.0",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.42",
"@types/winston": "^2.3.6",
"body-parser": "^1.17.2",
"chai": "^4.0.2",
"cors": "^2.8.3",
"coveralls": "^2.13.2",
"express": "^4.15.3",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"shx": "^0.2.2",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"tslint-config-airbnb": "^5.2.0",
"typescript": "^2.5.3"
},
"scripts": {
"clean": "node ./node_modules/shx/lib/cli.js rm -rf ./build ./coverage .nyc_output",
"lint": "node_modules/.bin/tslint ./lib/**/*.ts ./test/**/*.ts",
"test": "node_modules/.bin/mocha",
"tsc": "node_modules/.bin/tsc --project tsconfig.json",
"post-compile": "node ./node_modules/shx/lib/cli.js cp -r {package.json,README.md} ./build/rest",
"build": "npm run clean && npm run test && npm run tsc && npm run post-compile",
"coverage": "npm run clean && node ./node_modules/nyc/bin/nyc.js --reporter=lcov node ./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orchejs/rest.git"
},
"author": {
"name": "Mauricio Gemelli Vigolo",
"email": "@mauriciovigolo"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/orchejs/rest/issues"
},
"homepage": "https://github.com/orchejs/rest#readme"
}