-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "bintools",
"description": "Simple web-based conversion tools",
"homepage": "http://sheabunge.github.io/bintools",
"repository": {
"type": "git",
"url": "https://github.com/sheabunge/bintools.git"
},
"author": "Shea Bunge <shea@bungeshea.com>",
"license": "MIT",
"main": "gulpfile.babel.js",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"autoprefixer": "^9.5.0",
"babelify": "^10.0.0",
"browser-sync": "^2.26.3",
"browserify": "^16.2.3",
"cssnano": "^4.1.10",
"event-stream": "^4.0.1",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-postcss": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"merge-stream": "^1.0.1",
"precss": "^4.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"angular": "^1.8.0",
"angular-sanitize": "^1.7.8",
"npm-check-updates": "^3.1.1"
},
"scripts": {
"start": "gulp watch",
"build": "gulp",
"test": "gulp test"
}
}