-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "boolcalc",
"description": "Web application for parsing and evaluating boolean algebra expressions",
"homepage": "https://sheabunge.github.io/boolcalc",
"version": "1.0.0",
"author": "Shea Bunge <bungeshea@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sheabunge/boolcalc.git"
},
"bugs": {
"url": "https://github.com/sheabunge/boolcalc/issues"
},
"main": "gulpfile.babel.js",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"autoprefixer": "^10.3.4",
"babelify": "^10.0.0",
"browser-sync": "^2.27.5",
"browserify": "^17.0.0",
"cssnano": "^5.0.8",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"precss": "^4.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"angular": "^1.8.2",
"bootstrap": "^4.6.0"
},
"scripts": {
"test": "gulp test"
},
"keywords": [
"boolean",
"calculator"
]
}