-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "tinyshell",
"version": "1.0.2",
"description": "Tiny framework with swipe and tap events for building mobile hybrid apps in Cordova",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./dist",
"lint": "gulp lint",
"sass": "gulp fonts && rm -rf ./dist/css && gulp scss",
"build": "rm -rf ./dist/js && gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prof3ssorSt3v3/tinyshell.git"
},
"author": "Steve Griffith <griffis@algonquincollege.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prof3ssorSt3v3/tinyshell/issues"
},
"homepage": "https://github.com/prof3ssorSt3v3/tinyshell#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-minify": "^3.1.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"node-sass": "^4.13.1"
},
"dependencies": {}
}