forked from bullhorn/novo-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.12 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "novo-elements-projects",
"version": "4.3.4",
"description": "Bullhorn's Novo-Elements repository, including core projects and tools",
"license": "MIT",
"private": true,
"scripts": {
"precommit": "lint-staged",
"build": "ng build novo-elements && ng build chomsky",
"postbuild": "npm run copy-scss && npm run build:examples",
"build:watch": "ng build novo-elements --watch",
"build:chomsky": "ng build chomsky",
"build:chomsky:watch": "ng build chomsky --watch",
"build:demo": "ng build demo",
"prebuild:examples": "npm run generate:all",
"build:examples": "ng build novo-examples",
"build:examples:watch": "ng build novo-examples --watch",
"generate:examples": "ts-node --project tools/tsconfig.json ./tools/examples-module.ts",
"generate:routes": "ts-node --project tools/tsconfig.json ./tools/examples-routes.ts",
"generate:all": "npm run generate:examples && npm run generate:routes",
"start": "ng serve demo",
"copy-scss": "node copy-scss.js",
"test": "jest projects",
"test:watch": "jest projects --watch",
"lint": "ng lint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:elements": "standard-version",
"postrelease:elements": "git push --follow-tags origin master; npm run build; cd dist/novo-elements && npm publish",
"snapshot-publish": "bash snapshot-publish"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/projects/novo-elements/tsconfig.spec.json",
"diagnostics": true,
"stringifyContentPathRegex": "\\.html$",
"astTransformers": [
"jest-preset-angular/build/InlineFilesTransformer",
"jest-preset-angular/build/StripStylesTransformer"
]
}
},
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"novo-elements/setupJest.ts"
],
"testURL": "http://localhost"
},
"lint-staged": {
"*.{ts,json,scss,css,html}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@angular/animations": "~8.2.13",
"@angular/cdk": "~8.2.3",
"@angular/common": "~8.2.13",
"@angular/compiler": "~8.2.13",
"@angular/core": "~8.2.13",
"@angular/forms": "~8.2.13",
"@angular/platform-browser": "~8.2.13",
"@angular/platform-browser-dynamic": "~8.2.13",
"@angular/platform-server": "~8.2.13",
"@angular/router": "~8.2.13",
"@bullhorn/dragula": "1.0.1",
"ace-builds": "~1.4.7",
"angular2-text-mask": "9.0.0",
"brace": "0.11.1",
"classlist.js": "^1.1.20150312",
"core-js": "~3.2.1",
"date-fns": "1.30.1",
"post-robot": "9.0.30",
"rxjs": "~6.4.0",
"text-mask-addons": "^3.8.0",
"typescript": "3.5.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.18",
"@angular-devkit/build-ng-packagr": "~0.803.17",
"@angular/cli": "^8.3.17",
"@angular/compiler-cli": "~8.2.13",
"@angular/language-service": "~8.2.13",
"@types/glob": "^7.1.1",
"@types/jasminewd2": "~2.0.8",
"@types/jest": "~25.2.1",
"@types/node": "^10.12.18",
"codelyzer": "^5.0.1",
"conventional-changelog-cli": "~2.0.25",
"glob": "^7.1.3",
"husky": "^1.3.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"jest": "~25.3.0",
"jest-environment-jsdom-fifteen": "^1.0.2",
"jest-preset-angular": "~8.1.3",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"lint-staged": "^8.1.0",
"markdown-it": "^8.4.2",
"ng-packagr": "^5.5.1",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"protractor": "^5.4.2",
"standard-version": "^7.0.0",
"ts-jest": "~25.3.1",
"ts-node": "~8.4.1",
"tsickle": "^0.37.1",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"webpack": "^4.41.2"
}
}