-
-
Notifications
You must be signed in to change notification settings - Fork 498
/
package.json
87 lines (87 loc) · 2.53 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
{
"name": "angularjs-slider",
"version": "7.1.0",
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
"main": "dist/rzslider.js",
"types": "dist/rzslider.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/angular-slider/angularjs-slider"
},
"keywords": [
"angular",
"slider"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "http-server ./ -c-1",
"commit": "git-cz",
"build": "grunt",
"test": "grunt test",
"report-coverage": "cat ./tests/coverage/lcov.info | codecov",
"format": "prettier --write \"{src,tests,demo}/{,!(lib)/**}/*.{js,less,css}\"",
"precommit": "npm run build && git add dist && lint-staged",
"e2e": "npm start & cypress run",
"cypress:open": "cypress open"
},
"lint-staged": {
"{src,tests,demo}/{,!(lib)/**}/*.{js,less,css}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"angular": "^1.2.x"
},
"devDependencies": {
"angular": "1.4.7",
"angular-mocks": "1.4.8",
"autoprefixer": "^6.5.3",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.4.6",
"cypress": "^0.20.3",
"cz-conventional-changelog": "^1.1.5",
"grunt": "~0.4.2",
"grunt-angular-templates": "^0.5.7",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-mincss": "~0.3.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.12.1",
"grunt-ng-annotate": "^1.0.1",
"grunt-postcss": "^0.8.0",
"grunt-recess": "~0.4.0",
"grunt-replace": "^0.11.0",
"grunt-serve": "^0.1.6",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^2.2.0",
"karma-ng-html2js-preprocessor": "^0.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.4",
"lint-staged": "^4.0.3",
"mocha": "^3.1.2",
"phantomjs": "^1.9.19",
"prettier": "^1.13.7",
"recess": "~1.1.9",
"sinon": "^1.17.2"
},
"author": "Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}