forked from google/intermock
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.27 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.27 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
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
{
"name": "intermock-ssg",
"version": "1.0.1",
"description": "Automatically create mock objects and JSON from TypeScript interfaces via Faker",
"repository": {
"type": "git",
"url": "https://github.com/SolidStateGroup/intermock"
},
"bin": {
"intermock": "build/src/cli/index.js"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"command-line-args": "5.2.1",
"command-line-usage": "6.1.3",
"fs-readfile-promise": "3.0.1",
"tslib": "2.5.0",
"typescript": "^4.9.5"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"devDependencies": {
"@types/chai": "4.3.4",
"@types/command-line-args": "5.2.0",
"@types/command-line-usage": "5.0.2",
"@types/faker": "6.6.8",
"@types/fs-readfile-promise": "3.0.1",
"@types/mocha": "10.0.1",
"@types/node": "^18.11.18",
"chai": "4.3.7",
"clang-format": "1.8.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^2.7.2",
"mocha": "^10.2.0",
"mocha-multi-reporters": "1.5.1",
"mocha-notifier-reporter": "0.1.2",
"monaco-editor": "^0.34.1",
"node-sass": "^8.0.0",
"nyc": "15.1.0",
"rimraf": "^4.1.2",
"sass-loader": "^13.2.0",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "10.9.1",
"tslint": "~5.20.1",
"tsutils": "~3.21.0",
"watch-cli": "0.2.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-notifier": "^1.15.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 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": "./node_modules/tslint/bin/tslint -t stylish --project \"tsconfig.json\"",
"format": "clang-format -i -style=file src/**/*.ts test/**/*.ts",
"precommit": "check-clang-format",
"run-watch": "./node_modules/watch-cli/bin/watch -p \"./**/*.ts\" -c \"npm run cli\"",
"test": "npm run test-only",
"test-only": "./node_modules/mocha/bin/mocha.js --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": "Rashila Pandey <rashila@solidstategroup.com>",
"license": "Apache"
}