-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.93 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
{
"name": "@robotlegsjs/macrobot",
"version": "2.0.0",
"description": "TypeScript port of Robotlegs Utilities Macrobot",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "nyc mocha",
"karma": "karma start --single-run",
"autoformat": "prettier --config .prettierrc --write --list-different \"{src,static,test,example,definitions}{/**/,/}*.{html,css,js,json,ts}\"",
"tslint-check:src": "tslint-config-prettier-check ./tslint.json",
"tslint-check:test": "tslint-config-prettier-check ./tslint.test.json",
"tslint:src": "tslint --project tsconfig.json",
"tslint:test": "tslint --config tslint.test.json --project tsconfig.test.json",
"tslint": "npm run tslint-check:src && npm run tslint-check:test && npm run tslint:src && npm run tslint:test",
"clean-up": "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",
"dev": "webpack",
"build": "webpack --env.production",
"prepare": "npm run clean-up && npm run compile:src",
"prepublishOnly": "publish-please guard",
"publish-please": "npm run tslint && npm run autoformat && npm run clean-up && npm run test && publish-please"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov"
],
"check-coverage": true,
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git@github.com:RobotlegsJS/RobotlegsJS-Macrobot.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"TypeScript",
"RobotlegsJS",
"IoC",
"Macrobot",
"AsyncCommand",
"SequenceMacro",
"ParallelMacro"
],
"author": "RobotlegsJS",
"contributors": [
"Endel Dreyer <endel.dreyer@gmail.com>",
"Sargis Sargsyan <sargsyan.sargis.89@gmail.com>",
"Tiago Schenkel <tiago.schenkel@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotlegsJS/RobotlegsJS-Macrobot/issues"
},
"homepage": "https://github.com/RobotlegsJS/RobotlegsJS-Macrobot#readme",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"dependencies": {
"@robotlegsjs/core": "^2.0.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@robotlegsjs/signalcommandmap": "^2.0.0",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/sinon": "^7.5.2",
"@types/webpack-env": "^1.15.1",
"bluebird": "^3.7.2",
"browserify-versionify": "^1.0.6",
"chai": "^4.2.0",
"es6-map": "^0.1.5",
"es6-symbol": "^3.1.3",
"glslify": "^7.0.0",
"imports-loader": "^0.8.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.4.1",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-sourcemap-writer": "^0.1.2",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"publish-please": "^5.5.1",
"puppeteer": "^2.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.16",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}