forked from BenjaminKCooper/build-systems-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "build-systems-workshop",
"version": "1.0.0",
"description": "A build system is a service that executes a specific chain of commands in order to compile and package your code. Generally, the build system takes the files you have written, modifies them, and maps them to an executable.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenjaminKCooper/build-systems-workshop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenjaminKCooper/build-systems-workshop/issues"
},
"homepage": "https://github.com/BenjaminKCooper/build-systems-workshop#readme",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"gulp-git": "^1.9.0",
"run-sequence": "^1.2.2",
"yargs": "^4.8.1",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"gulp": "^3.9.1",
"jshint-stylish": "^2.2.0"
}
}