-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (41 loc) · 1009 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"dependencies": {
"grunt": "~0.4.4",
"grunt-cli": "~0.1.13",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-preprocess": "~4.0.0",
"grunt-contrib-jshint": "~0.9.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-less": "~0.11.0",
"grunt-wrap": "~0.3.0",
"grunt-amdwrap": "~0.0.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-copy": "~0.5.0"
},
"scripts": {
"postinstall": "bash ./deploy.sh"
},
"repository": "https://github.com/unclechu/grunt-project-templates",
"author": "Viacheslav Lotsmanov",
"grunt": {
"styles": [
{
"path": "bitrix/templates/main/styles",
"files": { "build.css": "main.less" }
}
],
"scripts": [
{
"path": "bitrix/templates/main/scripts",
"buildFile": "build.js",
"notAmdFiles": [ "*require*.js" ],
"amd": true
}
],
"jshint": {
"development": true,
"production": true
}
}
}