-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "clcalc",
"description": "Command line calculator",
"version": "1.0.11",
"private": true,
"license": "MIT",
"scripts": {
"dist": "./node_modules/gulp/bin/gulp.js",
"dev": "./node_modules/gulp/bin/gulp.js dev",
"lint": "./node_modules/gulp/bin/gulp.js eslint",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"dependencies": {
"gulp": "^5.0.0",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-less": "^5.0.0",
"gulp-pug": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-replace": "^1.1.4",
"jasmine-core": "^5.4.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"glob-parent": ">=6.0.2"
},
"browserslist": [
"defaults"
]
}