forked from willsoto/angular-chartist.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.32 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "angular-chartist.js",
"description": "Angular directive for Chartist.js",
"license": "MIT",
"author": "Will <[email protected]>",
"homepage": "https://github.com/willsoto/angular-chartist.js",
"repository": {
"type": "git",
"url": "https://github.com/willsoto/angular-chartist.js"
},
"bugs": {
"url": "https://github.com/willsoto/angular-chartist.js/issues"
},
"version": "5.0.0-beta.2",
"main": "dist/angular-chartist.js",
"scripts": {
"prebuild": "rimraf dist/",
"build": "rollup -c",
"lint": "eslint src/ test/",
"prepare": "npm run build",
"prerelease": "npm test",
"release": "standard-version --sign",
"postrelease": "git push --follow-tags origin master && npm publish",
"start": "webpack-serve",
"pretest": "npm run build",
"test": "karma start",
"test:watch": "npm run test -- --no-single-run --auto-watch"
},
"peerDependencies": {
"angular": ">=1.2.28",
"chartist": ">=0.9.0"
},
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-export-namespace-from": "7.7.4",
"@babel/plugin-proposal-function-sent": "7.7.4",
"@babel/plugin-proposal-json-strings": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-throw-expressions": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-syntax-import-meta": "7.7.4",
"@babel/preset-env": "7.7.6",
"@babel/register": "7.7.4",
"angular": "^1.7.4",
"angular-mocks": "^1.7.8",
"babel-loader": "^8.0.6",
"babel-plugin-angularjs-annotate": "^0.10.0",
"chai": "^4.2.0",
"chartist": "^0.11.0",
"conventional-changelog": "^3.1.8",
"conventional-changelog-cli": "^2.0.21",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"isparta-loader": "^2.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"lint-staged": "^9.0.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"prettier-package-json": "~2.1.0",
"puppeteer": "^2.0.0",
"rimraf": "^3.0.0",
"rollup": "^1.15.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-uglify": "^6.0.2",
"standard-version": "^7.0.0",
"style-loader": "^1.0.0",
"validate-commit": "^3.4.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-serve": "^3.1.0"
},
"keywords": [
"angular",
"chartist.js",
"directive"
],
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}