This repository has been archived by the owner on Sep 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.44 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
{
"name": "@robotlegsjs/phaser-signalcommandmap",
"version": "0.0.5",
"description": "SignalCommandMap RobotlegsJS Extension that maps Phaser.Signal class into commands",
"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": "prettier --config .prettierrc --write {src,test}/**/*.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 && 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"
},
"repository": {
"type": "git",
"url": "[email protected]:RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap.git"
},
"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-Phaser-SignalCommandMap/issues"
},
"homepage": "https://github.com/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap#readme",
"dependencies": {
"@robotlegsjs/core": "^0.2.0",
"phaser-ce": "^2.11.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.23",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.1",
"bluebird": "^3.5.1",
"browserify-versionify": "^1.0.6",
"chai": "^4.1.2",
"es6-map": "^0.1.5",
"es6-symbol": "^3.1.1",
"glslify": "^6.2.1",
"imports-loader": "^0.8.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-remap-istanbul": "^0.6.0",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-sourcemap-writer": "^0.1.2",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"prettier": "^1.14.0",
"publish-please": "^3.2.0",
"reflect-metadata": "^0.1.12",
"remap-istanbul": "^0.11.1",
"rimraf": "^2.6.2",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
}
}