-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "ng-facade",
"version": "0.6.0",
"description": "Angular style annotations in AngularJS",
"homepage": "https://github.com/jbedard/ng-facade",
"keywords": [
"angular",
"angular2",
"angularjs",
"typescript",
"annotations",
"decorators",
"metadata"
],
"main": "dist/facade.js",
"types": "dist/facade.d.ts",
"author": "Jason Bedard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jbedard/ng-facade.git"
},
"devDependencies": {
"@types/angular": "^1.6.50",
"@types/angular-mocks": "^1.7.0",
"@types/jasmine": "^3.3.5",
"angular": "^1.7.0",
"angular-mocks": "^1.7.0",
"conventional-changelog-cli": "^1.2",
"istanbul": "^0.4",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1",
"karma-jasmine": "^2.0.0",
"karma-typescript": "3.0",
"reflect-metadata": "^0.1",
"tslib": "^1.9.3",
"tslint": "^5.8.0",
"typescript": "^3.2.2"
},
"peerDependencies": {
"angular": "^1.7.0"
},
"scripts": {
"build": "tsc",
"test": "karma start karma.conf.js --single-run",
"test-server": "karma start karma.conf.js",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json ./src/*.ts",
"changelog": "conventional-changelog --infile ./CHANGELOG.md --same-file --release-count 1 --preset angular"
}
}