-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 863 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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
{
"name": "contacts",
"version": "1.0.0",
"description": "my contacts with VRaptor",
"main": "app.js",
"devDependencies": {
"node-sass": "4.5.0",
"nodemon": "1.11.0"
},
"scripts": {
"build:css": "node-sass src/main/webapp/assets/sass/ -r --include-path src/main/webapp/assets/sass/ --output-style compressed --source-map true -o src/main/webapp/assets/css/",
"watch:css": "nodemon --watch src/main/webapp/assets/sass/ --exec 'npm run build:css'",
"build": "npm run watch:css",
"dev": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "github.com/tcelestino/contacts"
},
"keywords": [
"vrpator",
"java"
],
"ignore": [
"**/.*",
"node_modules",
"test",
"tests"
],
"author": "Tiago Celestino",
"license": "MIT"
}