-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
{
"name": "@myfarms/mf-select",
"version": "1.7.2",
"scripts": {
"build": "gulp build",
"build:watch": "gulp",
"docs": "npm run docs:build",
"docs:build": "compodoc -p tsconfig.json -n @myfarms/mf-select -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts",
"lite": "lite-server",
"playground:build": "tsc -p playground -w",
"playground": "concurrently --kill-others \"npm run build:watch\" \"npm run playground:build\" \"npm run lite\"",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/src/jest.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/myfarms/mf-select"
},
"author": {
"name": "MyFarms",
"email": "[email protected]"
},
"contributors": [
{
"name": "Adam Keenan",
"email": "[email protected]"
},
{
"name": "Simon Smith",
"email": "[email protected]"
},
{
"name": "Dylan Hamilton",
"email": "[email protected]"
}
],
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/myfarms/mf-select/issues"
},
"devDependencies": {
"@angular/common": "^9.1.12",
"@angular/compiler": "^9.1.12",
"@angular/compiler-cli": "^9.1.12",
"@angular/core": "^9.1.12",
"@angular/forms": "^9.1.12",
"@angular/platform-browser": "^9.1.12",
"@angular/platform-browser-dynamic": "^9.1.12",
"@compodoc/compodoc": "^1.1.11",
"@types/jest": "^22.2.3",
"@types/node": "^6.14.13",
"codelyzer": "^4.5.0",
"concurrently": "^3.6.1",
"core-js": "^2.6.11",
"del": "^2.2.2",
"fs-extra": "^5.0.0",
"gulp": "3.9.1",
"gulp-rename": "^1.4.0",
"gulp-rollup": "^2.17.0",
"jest": "^22.4.4",
"jest-preset-angular": "^5.2.3",
"lite-server": "^2.5.4",
"node-sass": "^4.14.1",
"node-sass-tilde-importer": "^1.0.2",
"node-watch": "^0.5.9",
"protractor": "~5.1.2",
"rollup": "^0.49.3",
"run-sequence": "^1.2.2",
"rxjs": "^6.6.3",
"systemjs": "^0.20.12",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~3.8",
"zone.js": "^0.8.29"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"angular2-virtual-scroll": "^0.4",
"tsickle": "^0.38.1"
}
}