-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "@worldsibu/convector-rest-api-decorators",
"version": "1.0.8",
"description": "Decorators for the Rest API generator for the Convector Framework",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/*",
"package.json"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"lint": "tslint --fix -c './tslint.json' -p -p './tsconfig.json'",
"test": "mocha -r ts-node/register tests/**/*.spec.ts --reporter spec"
},
"devDependencies": {
"rimraf": "^2.6.3",
"ts-node": "^6.0.3",
"tsc": "^1.20150623.0",
"tslint": "^5.12.1",
"typescript": "^2.9.2"
},
"author": "Luca Tamburrano",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/worldsibu/convector-rest-api-decorators.git"
},
"bugs": {
"url": "https://github.com/worldsibu/convector-rest-api-decorators/issues"
},
"homepage": "https://github.com/worldsibu/convector-rest-api-decorators#readme"
}