-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·30 lines (30 loc) · 962 Bytes
/
package.json
File metadata and controls
executable file
·30 lines (30 loc) · 962 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
{
"name": "academia-digital-client",
"version": "1.0.0",
"description": "Aplicativo - Academia Digital",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:js",
"lint:js": "eslint --ignore-path .gitignore --ext .js ./src",
"clean:build": "rimraf build",
"build": "npm run clean:build && bower install && grunt build && node ./scripts/build.js",
"build:prod": "NODE_ENV=production npm run build"
},
"author": "Stanley Sathler <stanleysathlerpinto@gmail.com>",
"license": "ISC",
"devDependencies": {
"bower": "^1.8.0",
"eslint": "^4.1.0",
"eslint-config-google": "^0.8.0",
"grunt": "^1.0.1",
"grunt-concat-css": "^0.3.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.1"
}
}