This repository was archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.64 KB
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
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "phaser-component-library",
"version": "2.0.0",
"license": "MIT",
"description": "Phaser component for Angular.",
"author": "Tristan Bonsor <tristan.bonsor@gmail.com> (https://tristanbonsor.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/TristanBonsor/phaser-component-library.git"
},
"homepage": "https://tristanbonsor.github.io/phaser-component-library/",
"bugs": {
"url": "https://github.com/TristanBonsor/phaser-component-library/issues"
},
"scripts": {
"angular-cli-ghpages": "angular-cli-ghpages",
"build": "npm run build:doc && npm run build:example && npm run build:package",
"build:doc": "npm run typedoc -- --options typedoc.json ./src/app/modules",
"build:example": "npm run ng -- build --prod",
"build:package": "npm run ng-packagr -- -p package.json && cd dist && npm pack",
"ci:coveralls": "npm run shx -- cat ./coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js",
"ci:travis": "npm run lint && npm run test:coverage",
"clean": "npm run clean:coverage && npm run clean:doc && npm run clean:example && npm run clean:package",
"clean:coverage": "npm run shx -- rm -rf coverage",
"clean:doc": "npm run shx -- rm -rf doc",
"clean:example": "npm run shx -- rm -rf example-app",
"clean:npm": "npm cache clean --force && npm run shx -- rm -rf node_modules && npm set progress=false && npm install",
"clean:package": "npm run shx -- rm -rf dist dist.tgz",
"concurrently": "concurrently",
"e2e": "npm run ng -- e2e",
"get-phaser-typings": "curl -o src/phaser.d.ts https://raw.githubusercontent.com/photonstorm/phaser3-docs/master/typescript/phaser.d.ts",
"lint": "npm run ng -- lint",
"ng": "ng",
"ng-packagr": "ng-packagr",
"postinstall": "npm run get-phaser-typings",
"prebuild": "npm run clean && npm run lint && npm run test:coverage && npm run e2e",
"publish:doc": "npm run shx -- touch doc/.nojekyll && npm run angular-cli-ghpages -- --dir doc",
"serve": "npm run ng -- serve",
"shx": "shx",
"start": "npm run concurrently -- \"npm run test\" \"npm run serve\"",
"test": "npm run ng -- test",
"test:coverage": "npm run test:single-run -- --code-coverage",
"test:single-run": "npm run test -- --watch=false",
"typedoc": "typedoc"
},
"peerDependencies": {
"@angular/core": "^6.0.0",
"phaser": "^3.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.7.0",
"@angular/cli": "~6.1.3",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/compiler-cli": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"angular-cli-ghpages": "^0.5.3",
"codelyzer": "~4.2.1",
"concurrently": "^3.6.1",
"core-js": "^2.5.4",
"coveralls": "^3.0.2",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^4.1.0",
"phaser": "^3.11.0",
"protractor": "~5.3.0",
"rxjs": "^6.0.0",
"shx": "^0.3.2",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typedoc": "^0.11.1",
"typescript": "~2.9.2",
"zone.js": "~0.8.26"
},
"ngPackage": {
"lib": {
"entryFile": "src/app/modules/index.ts",
"comments": "none",
"licensePath": "LICENSE"
}
}
}