-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
133 lines (133 loc) · 4 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@robotlegsjs/core",
"version": "3.0.0",
"description": "An architecture-based IoC framework for JavaScript/TypeScript",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "nyc mocha",
"karma": "node --max-old-space-size=2048 ./node_modules/karma/bin/karma start --single-run",
"autoformat": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write --list-different .",
"lint-fix:src": "eslint -c .eslintrc.js --ext .ts ./src --fix",
"lint-fix:test": "eslint -c .eslintrc.js --ext .ts ./test --fix",
"lint-fix": "npm run lint-fix:src && npm run lint-fix:test",
"lint:src": "eslint -c .eslintrc.js --ext .ts ./src",
"lint:test": "eslint -c .eslintrc.js --ext .ts ./test",
"lint": "npm run lint:src && npm run lint:test",
"cleanup": "rimraf .nyc_output && rimraf coverage && rimraf lib && rimraf lib-test && rimraf dist-test",
"compile:src": "tsc -d --importHelpers",
"compile:test": "tsc -p tsconfig.test.json -d --importHelpers",
"dist:dev": "webpack",
"dist:production": "webpack --env production",
"build": "npm run cleanup && npm run compile:src",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"require": [
"jsdom-global/register",
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"lcov"
],
"check-coverage": true,
"sourceMap": true,
"instrument": true
},
"repository": {
"url": "https://github.com/RobotlegsJS/RobotlegsJS-Framework/tree/master/packages/core"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"TypeScript",
"Robotlegs",
"IoC"
],
"author": "RobotlegsJS",
"contributors": [
"Endel Dreyer <[email protected]>",
"Tiago Schenkel <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotlegsJS/RobotlegsJS-Framework/issues"
},
"homepage": "https://github.com/RobotlegsJS/RobotlegsJS-Framework/tree/master/packages/core#readme",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"dependencies": {
"inversify": "^5.1.1",
"tslib": "^2.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rushstack/eslint-config": "^2.3.4",
"@types/bluebird": "^3.5.35",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.2",
"@types/webpack-env": "^1.16.0",
"bluebird": "^3.7.2",
"browserify-versionify": "^1.0.6",
"chai": "^4.3.4",
"es6-map": "^0.1.5",
"es6-symbol": "^3.1.3",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^33.0.1",
"glslify": "^7.1.1",
"imports-loader": "^3.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-commonjs": "^1.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-sourcemap-writer": "^0.1.2",
"karma-webpack": "^5.0.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"puppeteer": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.19",
"terser-webpack-plugin": "^5.1.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "~4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}