-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "angular2-disqus",
"version": "6.1.1",
"description": "Disqus integration with Angular.",
"files": [
"lib"
],
"main": "./lib/disqus.module.js",
"typings": "./lib/disqus.module.d.ts",
"directories": {},
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"",
"code": "tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"",
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"lint": "tslint ./app/**/*.ts -t verbose",
"lite": "lite-server -c bs-config.js",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"setup": "typings install && npm install",
"pack": "del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y",
"clear-lib": "rimraf lib",
"ngc-build": "ngc -p ./tsconfig-ngc.json",
"prepublish": "npm run clear-lib && npm run ngc-build"
},
"keywords": [
"Angular",
"Angular2",
"DISQUS"
],
"author": {
"name": "Jay Chase",
"email": "JonathanChase@outlook.com",
"url": "https://netdevplus.wordpress.com"
},
"bugs": {
"url": "https://github.com/jaychase/angular2-disqus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jaychase/angular2-disqus.git"
},
"license": "MIT",
"peerDependencies": {
"@angular/core": "^2.3.1 || >=4.0.0"
},
"dependencies": {},
"devDependencies": {
"@angular/animations": "^4.0.1",
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/material": "^2.0.0-beta.2",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/router": "^4.0.1",
"@types/core-js": "^0.9.41",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.12",
"canonical-path": "0.0.2",
"codelyzer": "^2.1.1",
"concurrently": "^2.0.0",
"core-js": "^2.4.1",
"jasmine-core": "2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-htmlfile-reporter": "^0.2.2",
"karma-jasmine": "^0.3.8",
"karma-verbose-reporter": "0.0.3",
"lite-server": "^2.2.0",
"lodash": "^4.11.1",
"protractor": "^3.3.0",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.2",
"rxjs": "^5.1.0",
"systemjs": "^0.19.27",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"zone.js": "^0.8.4"
}
}