-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "mesh-model-generator",
"version": "0.3.3",
"description": "Generate model interfaces from Gentics Mesh RAML declarations",
"author": "Leon Adler <[email protected]>",
"license": "MIT",
"keywords": [
"generator",
"gentics",
"mesh",
"models",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gentics/mesh-model-generator.git"
},
"bugs": {
"url": "https://github.com/gentics/mesh-model-generator/issues"
},
"homepage": "https://github.com/gentics/mesh-model-generator#readme",
"main": "es5/index.js",
"esnext:main": "es6/index.js",
"es2015": "es6/index.js",
"typings": "declarations/index.d.ts",
"bin": {
"mesh-model-generator": "./es5/cli.js"
},
"scripts": {
"build": "gulp build",
"build-tsc": "tsc -p tsconfig.es5.json && tsc -p tsconfig.es6.json",
"prepublishOnly": "gulp default",
"test": "mocha --require ts-node/register --require source-map-support/register 'src/**/*.spec.ts'",
"watch-tests": "mocha --watch --reporter min --require ts-node/register --require source-map-support/register 'src/**/*.spec.ts'",
"watch": "gulp watch"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/del": "^2.2.31",
"@types/gulp-mocha": "0.0.32",
"@types/gulp-sourcemaps": "0.0.29",
"@types/gulp-typescript": "0.0.32",
"@types/gulp-util": "^3.0.30",
"@types/js-yaml": "^3.12.1",
"@types/merge2": "^0.3.29",
"@types/mocha": "^5.2.7",
"@types/node": "^6.14.6",
"@types/orchestrator": "0.0.30",
"@types/source-map-support": "^0.2.28",
"@types/vinyl": "^2.0.3",
"chai": "^3.5.0",
"del": "^2.2.2",
"gulp": "^4.0.2",
"gulp-mocha": "^6.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"merge2": "^1.2.3",
"mocha": "^5.2.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.4.6",
"ts-node": "^7.0.1",
"typescript": "^2.2.1"
},
"dependencies": {
"extend": "^3.0.2",
"js-yaml": "^3.13.1"
}
}