-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.94 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
{
"name": "ts-runtime",
"version": "0.3.0",
"description": "Runtime Type Checks for TypeScript",
"main": "index.js",
"bin": {
"tsr": "bin/index.js"
},
"repository": "https://github.com/fabiandev/ts-runtime.git",
"author": "Fabian Leutgeb <hi@fabiandev.io>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "NODE_ENV=test TS_NODE_CACHE=false ./node_modules/mocha/bin/_mocha",
"cover": "NODE_ENV=test TS_NODE_CACHE=false ./node_modules/.bin/nyc npm test",
"ci": "npm run build && npm run build:lkg && node lkg/bin/index && node lkg/bin/index && npm run cover",
"coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"build": "npm run build:tsr && npm run build:lib",
"build:dist": "npm run build:tsr && npm run build:lib && npm run build:playground",
"build:tsr": "./node_modules/.bin/tsc --rootDir src --outDir dist --module CommonJS --target es5 --skipLibCheck && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"build:lib": "node_modules/.bin/webpack --config src/lib/build/webpack.config.js",
"build:playground": "node_modules/.bin/gulp --gulpfile src/playground/build/gulpfile.js build",
"build:lkg": "ts-node --no-cache ./src/bin/index src/index src/lib/index src/bin/index src/bin/process --libDeclarations --moduleAlias -c tsconfig-lkg.json --stackTraceOutput 50"
},
"_moduleAliases": {
"ts-runtime": "dist"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"commondir": "^1.0.1",
"flow-runtime": "^0.17.0",
"ora": "^5.1.0",
"pretty-time": "^1.1.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/expect.js": "^0.3.29",
"@types/lodash.debounce": "^4.0.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/ora": "^1.3.4",
"@types/rimraf": "^2.0.2",
"@types/webpack-env": "^1.13.6",
"coveralls": "^3.0.0",
"css-loader": "^1.0.0",
"del": "^3.0.0",
"expect.js": "^0.3.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^4.0.1",
"gulp-preprocess": "^3.0.3",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"lodash.debounce": "^4.0.8",
"mocha": "^5.0.0",
"module-alias": "^2.0.0",
"monaco-editor": "^0.21.2",
"monaco-typescript": "Microsoft/monaco-typescript",
"normalize.css": "^8.0.0",
"null-loader": "^0.1.1",
"nyc": "^13.0.1",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.2.1",
"source-map-support": "^0.5.3",
"ts-loader": "^5.0.0",
"ts-node": "^6.0.0",
"uglify-js": "^3.0.28",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"worker-loader": "^2.0.0"
}
}