-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "amocrm-widget-starter-kit",
"version": "1.1.0",
"description": "AmoCrm widget build helper",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xtratio/amocrm-widget-starter-kit.git"
},
"keywords": [
"crm",
"amocrm",
"kit",
"widget"
],
"author": "xtratio <[email protected]> (https://github.com/xtratio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xtratio/amocrm-widget-starter-kit/issues"
},
"homepage": "https://github.com/xtratio/amocrm-widget-starter-kit#readme",
"devDependencies": {
"del": "^2.2.2",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"jsonlint": "^1.6.2",
"semver": "^5.3.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-include": "^2.3.1",
"gulp-jshint": "^2.0.4",
"gulp-jsonlint": "^1.1.1",
"gulp-csslint": "^1.0.0",
"gulp-strip-comments": "^2.4.3",
"gulp-util": "^3.0.8",
"gulp-zip": "^4.0.0",
"gulp-json-modify": "^1.0.2"
},
"jshintConfig":{
"globals": {
"define": false
},
"esversion": 5,
"bitwise": true,
"browser": true,
"curly": true,
"eqeqeq": false,
"forin": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"strict": false,
"globalstrict": "global",
"sub": true,
"supernew": true,
"undef": true,
"unused": true
}
}