-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.51 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
{
"name": "robotlegs-macrobot",
"version": "1.0.1",
"description": "TypeScript port of Robotlegs Utilities Macrobot",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "karma start --single-run",
"mocha": "mocha test/**/*.test.ts --require ts-node/register",
"autoformat": "tsfmt -r",
"clean-up": "rm -rf coverage && rm -rf lib",
"prepublish": "tsc -d && publish-please guard",
"publish-please": "npm run autoformat && npm run clean-up && publish-please"
},
"repository": {
"type": "git",
"url": "https://github.com/GoodgameStudios/RobotlegsJS-Macrobot.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"TypeScript",
"Robotlegs",
"IoC"
],
"author": "Goodgame Studios",
"contributors": [
"Endel Dreyer <endel.dreyer@gmail.com>",
"Tiago Schenkel <tiago.tche@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GoodgameStudios/RobotlegsJS-Macrobot/issues"
},
"homepage": "https://github.com/GoodgameStudios/RobotlegsJS-Macrobot#readme",
"dependencies": {
"robotlegs": "^1.0.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.3",
"bluebird": "^3.5.0",
"browserify-versionify": "^1.0.6",
"chai": "^4.1.0",
"es6-map": "^0.1.5",
"es6-symbol": "^3.1.1",
"glslify": "^6.1.0",
"imports-loader": "^0.7.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-remap-istanbul": "^0.6.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-sourcemap-writer": "^0.1.2",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"publish-please": "^2.3.1",
"reflect-metadata": "^0.1.10",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"ts-loader": "^2.3.2",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"typescript-formatter": "^5.2.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"peerDependencies": {
"reflect-metadata": "^0.1.10"
}
}