forked from google/intermock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "intermock",
"version": "0.2.2",
"description": "Automatically create mock objects and JSON from TypeScript interfaces via Faker",
"repository": {
"type": "git",
"url": "https://github.com/google/intermock.git"
},
"bin": {
"intermock": "./build/src/cli/index.js"
},
"dependencies": {
"command-line-args": "5.0.2",
"command-line-usage": "5.0.5",
"faker": "4.1.0",
"fs-readfile-promise": "3.0.1",
"tslib": "1.10.0",
"typescript": "^3.7.5"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"devDependencies": {
"@types/chai": "4.1.3",
"@types/command-line-args": "5.0.0",
"@types/command-line-usage": "5.0.1",
"@types/faker": "4.1.2",
"@types/fs-readfile-promise": "3.0.0",
"@types/mocha": "5.2.0",
"@types/node": "^8.10.45",
"chai": "4.1.2",
"clang-format": "1.4.0",
"clean-webpack-plugin": "^1.0.1",
"closure-webpack-plugin": "^1.2.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "5.2.0",
"mocha-multi-reporters": "1.1.7",
"mocha-notifier-reporter": "0.1.2",
"monaco-editor": "^0.15.6",
"node-sass": "^4.12.0",
"nyc": "12.0.2",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.12",
"style-loader": "^0.23.1",
"ts-jest": "^22.4.6",
"ts-loader": "^5.3.3",
"ts-node": "6.0.5",
"tslint": "~5.9.1",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~2.26.2",
"uglifyjs-webpack-plugin": "^2.1.2",
"watch-cli": "0.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"webpack-notifier": "^1.7.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"coverage": "nyc --reporter=html --reporter=text mocha --reporter mocha-multi-reporters --reporter-options configFile=mocha-config.json --no-colors -r ts-node/register test/**/*.spec.ts",
"ci": "npm run format-check && npm run lint && npm run test",
"cli": "npm run build && node ./build/src/cli/index.js --fixed --files ./examples/example.ts",
"build": "tsc -p tsconfig.json",
"docs-serve": "webpack-dev-server --config webpack.dev.js",
"docs-build": "webpack --config webpack.prod.js",
"dist": "tsc -p tsconfig.json --outDir ./bin",
"watch": "tsc -w -p tsconfig.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"format-check": "./format-check.sh",
"format": "./node_modules/clang-format/bin/linux_x64/clang-format -i -style=file src/**/*.ts test/**/*.ts",
"run-watch": "./node_modules/watch-cli/bin/watch -p \"./**/*.ts\" -c \"npm run cli\"",
"test": "npm run test-only",
"test-only": "mocha --reporter mocha-multi-reporters --reporter-options configFile=mocha-config.json --no-colors -r ts-node/register test/**/*.spec.ts",
"test-watch": "./node_modules/watch-cli/bin/watch -p \"./**/*.ts\" -c \"npm run build && npm run test\""
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"bin/**/*",
"build/**/*",
"coverage/**/*",
"test/**/*",
"src/lib/generate-fixed-data.ts",
"src/lib/generators.ts"
],
"reporter": [
"html"
],
"all": true
},
"author": "Ryan McDermott <[email protected]>",
"license": "Apache"
}