forked from willsoto/ng-chartist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.14 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
{
"name": "ng-chartist",
"version": "1.1.0",
"description": "Chartist component for Angular",
"main": "./dist/ng-chartist.js",
"typings": "./dist/chartist.component.d.ts",
"files": [
"src/",
"dist/"
],
"git": {
"scripts": {
"commit-msg": "./node_modules/.bin/validate-commit-msg $1"
}
},
"scripts": {
"clean": "rimraf dist/",
"start": "webpack-dev-server",
"build:demo": "webpack -p",
"prebuild:dist": "npm run clean",
"build:dist": "webpack --config ./config/webpack.dist.js && tsc --project tsconfig.json",
"postbuild:dist": "uglifyjs dist/ng-chartist.js --compress --mangle --screw-ie8 -o dist/ng-chartist.min.js",
"test": "karma start",
"test:watch": "karma start --auto-watch --no-single-run",
"typedoc": "typedoc --options typedoc.json src/*.ts",
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"prerelease": "npm test",
"release": "standard-version --sign && git push --follow-tags origin master && npm run build:dist && npm publish",
"postrelease": "npm run gh-pages",
"coveralls": "coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willsoto/ng-chartist.git"
},
"keywords": [
"angular",
"chartist",
"charting",
"charts"
],
"author": "Will Soto",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willsoto/ng-chartist/issues"
},
"homepage": "https://github.com/willsoto/ng-chartist#readme",
"devDependencies": {
"@angular/common": "^2.4.8",
"@angular/compiler": "^2.4.8",
"@angular/compiler-cli": "^2.4.8",
"@angular/core": "^2.4.8",
"@angular/forms": "^2.4.8",
"@angular/platform-browser": "^2.4.8",
"@angular/platform-browser-dynamic": "^2.4.8",
"@angular/router": "^3.4.8",
"@ngtools/webpack": "^1.2.10",
"@types/chartist": "^0.9.34",
"@types/jasmine": "^2.5.43",
"@types/rx": "^4.1.1",
"awesome-typescript-loader": "^3.0.4",
"chartist": "^0.10.1",
"codelyzer": "^2.0.1",
"coveralls": "^2.11.16",
"es6-shim": "^0.35.3",
"eslint": "^3.16.0",
"git-scripts": "^0.2.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.5.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"phantomjs-prebuilt": "^2.1.14",
"reflect-metadata": "0.1.10",
"rimraf": "^2.6.0",
"rxjs": "5.2.0",
"standard-version": "^4.0.0",
"tslint": "4.5.1",
"tslint-loader": "^3.4.2",
"typedoc": "^0.5.7",
"typescript": "^2.1.6",
"uglify-js": "^2.7.5",
"validate-commit": "^2.3.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"zone.js": "^0.7.7"
},
"peerDependencies": {
"@angular/core": ">=2.0.0",
"@types/chartist": "^0.9.34",
"chartist": ">=0.9.8"
}
}