forked from drupal-composer/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 960 Bytes
/
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
{
"name": "<example-project>",
"version": "1.0.0",
"description": "",
"homepage": "http://www.<example-project>.fi",
"main": "index.js",
"scripts": {
"test": "cd web/themes/custom/<example-project>/; gulp jshint",
"update": "bundle && composer install && (cd web/themes/custom/<example-project>/; npm install && bower install)",
"build": "cd web/themes/custom/<example-project>/; gulp --production"
},
"config": {
"theme": "web/themes/custom/<example-project>",
"assets": [
"web/themes/custom/<example-project>/dist",
"web/themes/custom/<example-project>/bower_components"
]
},
"repository": {
"type": "git",
"url": "git@github.com:generoi/<example-project>.git"
},
"authors": [
"Christoffer Björkskog <christoffer@genero.fi>",
"Oskar Schöldström <oskar@genero.fi>"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/generoi/<example-project>/issues"
}
}