-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "diamond-sweeper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently -k \"npm run dev\" \"npm run watch-css\"",
"dev": "lite-server",
"db": "json-server --watch db.json --port 3005",
"build-js": "mkdir -p dist/js && uglifyjs src/js/*.js -m -o dist/js/app.js",
"lint": "lint jshint src/**/**.js",
"build-css": "node-sass --include-path scss scss/style.scss css/style.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"test": "mocha test",
"pretest": "npm run lint",
"posttest": "echo the test has been run!",
"bash": "Location of the bash/shell script file",
"clean": "rimraf ./dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madhankumar028/diamond-sweeper.git"
},
"keywords": [
"Diamond-sweeper"
],
"author": "Madhankumar J",
"license": "MIT",
"bugs": {
"url": "https://github.com/madhankumar028/diamond-sweeper/issues"
},
"homepage": "https://github.com/madhankumar028/diamond-sweeper#readme",
"devDependencies": {
"concurrently": "^3.5.0",
"jshint": "^2.9.5",
"json-server": "^0.12.0",
"lite-server": "^2.3.0",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1"
}
}