forked from MS3Inc/MS3Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "ms3converter",
"version": "0.0.1",
"description": "Converts between MS3, OAS(Swagger), Blueprint",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && npm run watch-ts",
"test": "npm run build && node ./node_modules/.bin/jest --forceExit",
"build": "node ./node_modules/.bin/tsc",
"watch-ts": "node ./node_modules/.bin/tsc -w",
"tslint": "node ./node_modules/.bin/tslint -c tslint.json -p tsconfig.json"
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.js"
],
"testEnvironment": "node"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MS3Inc/MS3Converter.git"
},
"keywords": [
"api",
"converter",
"ms3",
"oas",
"swagger",
"blueprint"
],
"author": "MS3",
"license": "ISC",
"bugs": {
"url": "https://github.com/MS3Inc/MS3Converter/issues"
},
"homepage": "https://github.com/MS3Inc/MS3Converter#readme",
"dependencies": {
"fs": "0.0.1-security",
"lodash": "^4.17.4",
"path": "^0.12.7",
"util": "^0.10.3"
},
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/lodash": "^4.14.63",
"@types/node": "^8.0.47",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"ts-jest": "^21.1.3",
"tslint": "^5.0.0",
"typescript": "^2.5.0"
}
}