-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.94 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
{
"name": "ts-ng-decorators",
"version": "1.0.0",
"description": "",
"homepage": "http://github.com/nodeandtyped/ts-ng-decorators",
"author": {
"name": "Romain Lenzotti",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"angular 1",
"decorators",
"typescript"
],
"repository": "http://github.com/nodeandtyped/ts-ng-decorators",
"dependencies": {
"angular": ">=1.5",
"tslib": "1.6.0",
"reflect-metadata": "^0.1.8"
},
"devDependencies": {
"@types/angular": ">=1.5",
"@types/angular-mocks": ">=1.5",
"@types/jquery": "^2.0.40",
"@types/lodash": "4.14.50",
"@types/node": "7.0.5",
"@types/es6-shim": "^0.31.32",
"@types/jasmine": "^2.5.43",
"angular-mocks": ">=1.5",
"gulp": "gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
"gulp-hub": "frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
"remap-istanbul": "0.9.1",
"source-map-support": "^0.4.11",
"tslint": "4.5.1",
"typedoc": "0.5.10",
"typedoc-plugin-external-module-name": "^1.0.9",
"typescript": "2.2.2",
"karma": "^1.4.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"jasmine": "^2.5.3",
"es6-shim": "^0.35.3",
"karma-angular-filesort": "^1.0.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-es6-shim": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"phantomjs-prebuilt": "^2.1.14",
"karma-webpack": "^2.0.2",
"webpack": "^2.2.1",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.13.1",
"css-loader": "^0.26.1",
"postcss-loader": "^1.3.1",
"autoprefixer": "^6.7.3",
"json-loader": "^0.5.4",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"ng-annotate-loader": "^0.2.0",
"html-loader": "^0.4.4",
"ts-loader": "^2.0.0",
"tslint-loader": "^3.4.2"
},
"scripts": {
"build": "npm run tsc",
"tslint": "tslint ./src/**/*.ts",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"test": "gulp test",
"test:travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"tsc": "./node_modules/typescript/bin/tsc --project tsconfig.json",
"tsc:test": "./node_modules/typescript/bin/tsc --rootDir test --project test/tsconfig.json",
"tsc:w": "./node_modules/typescript/bin/tsc -w --project tsconfig.json",
"build:doc": "./node_modules/typedoc/bin/typedoc --target ES6 --module commonjs --name TsNgDecorators --exclude src/index.ts --out docs/ src/**/"
},
"license": "MIT",
"directories": {
"lib": "lib",
"test": "test"
}
}