forked from xialeistudio/angular-icheck
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
{
"name": "ng2-icheck",
"version": "2.1.7",
"description": "A icheck directive for angular 2 like jQuery iCheck.",
"main": "index.js",
"scripts": {
"build:system": "tsc -p config/tsconfig.system.json",
"build:cjs": "ngc -p config/tsconfig.cjs.json",
"build": "npm run build:cjs && npm run build:system",
"test": "karma start config/karma.conf.js",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"docs:watch": "webpack --config config/webpack.config.js --progress --colors --watch",
"docs:dist": "webpack --config config/webpack.config.js --progress --colors -p --env.prod",
"publish-lib": "npm run test && npm run build && npm run docs:dist"
},
"files": [
"dist",
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tommasomarchionni/ng2-icheck.git"
},
"keywords": [
"angular2",
"icheck"
],
"author": "Tommaso Marchionni <tommaso.marchionni@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tommasomarchionni/ng2-icheck/issues"
},
"homepage": "https://github.com/tommasomarchionni/ng2-icheck#readme",
"dependencies": {},
"devDependencies": {
"@angular/common": "^2.4.3",
"@angular/compiler": "^2.4.3",
"@angular/compiler-cli": "^2.4.3",
"@angular/core": "^2.4.3",
"@angular/platform-browser": "^2.4.3",
"@angular/platform-browser-dynamic": "^2.4.3",
"@angular/platform-server": "^2.4.3",
"@ngtools/webpack": "1.1.4",
"@types/es6-shim": "^0.31.32",
"@types/jasmine": "2.5.41",
"@types/node": "^6.0.45",
"angular2-template-loader": "0.6.0",
"bulma": "0.2.3",
"core-js": "^2.4.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"highlight.js": "^9.1.0",
"html-loader": "^0.4.3",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-webpack": "^1.8.0",
"marked": "^0.3.6",
"node-sass": "^3.6.0",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.3",
"rxjs": "^5.0.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.1",
"ts-loader": "^1.0.0",
"typescript": "2.0.6",
"webpack": "2.1.0-beta.25",
"zone.js": "0.7.4"
}
}