-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "angular-xxl",
"version": "4.0.0",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/scaljeri/angular-xxl.git",
"author": "lucascalje <[email protected]>",
"license": "MIT",
"keywords": [
"angular",
"router",
"resolve",
"parameter",
"data",
"decorator"
],
"scripts": {
"build": "rm -rf bundle && ./node_modules/.bin/tsc && ./node_modules/.bin/tsc -d --lib 'es2015, dom' ./index.ts",
"prepublish": "yarn build",
"test": "./node_modules/.bin/nyc mocha",
"stryker": "stryker run",
"coveralls": "./node_modules/.bin/coveralls < coverage/lcov.info",
"lint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json 'src/*.ts'"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@stryker-mutator/api": "3.2.3",
"@stryker-mutator/core": "3.2.3",
"@stryker-mutator/mocha-framework": "3.2.3",
"@stryker-mutator/mocha-runner": "3.2.3",
"@stryker-mutator/typescript": "3.2.3",
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@types/sinon-chai": "3.2.4",
"chai": "4.2.0",
"coveralls": "3.1.0",
"mocha": "7.1.2",
"nyc": "15.0.1",
"rxjs": "6.5.5",
"rxjs-tslint": "0.1.8",
"rxjs-tslint-rules": "4.32.0",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"stryker-cli": "1.0.0",
"ts-node": "8.10.1",
"tslint": "6.1.2",
"typescript": "3.9.2"
},
"peerDependencies": {
"@angular/core": "*"
}
}