forked from telerik/kendo-ui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (73 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
{
"name": "kendo-ui-core",
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-ui-core.git"
},
"version": "1.0.0",
"dependencies": {
},
"devDependencies": {
"optimist": "0.3.7",
"typescript": "1.4.1",
"uglify-js": "2.4.24",
"cssmin": "0.3.2",
"faye": "0.8.3",
"xmlbuilder": "0.4.2",
"colors": "0.6.0-1",
"cookiejar": "1.3.0",
"faye-websocket": "0.4.4",
"less": "1.7.5",
"postcss": "^4.1.16",
"grunt-postcss": "^0.5.5",
"autoprefixer-core": "^5.2.1",
"jshint": "2.8.0",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-copy": "~0.5.0",
"grunt-debug-task": "0.1.3",
"grunt-karma": "0.6.2",
"qunitjs": "~1.12.0",
"karma": "0.10.5",
"karma-chrome-launcher": "~0.1",
"karma-firefox-launcher": "~0.1",
"karma-html2js-preprocessor": "~0.1",
"karma-qunit": "0.1.1",
"karma-junit-reporter": "0.2.1",
"karma-osx-reporter": "0.0.4",
"karma-ie-launcher": "~0.1",
"karma-coffee-preprocessor": "~0.1.3"
},
"scripts": {
"build": "npm install && grunt build",
"test": "./node_modules/.bin/grunt travis"
},
"jshintConfig": {
"es3": true,
"freeze": true,
"curly": true,
"undef": true,
"unused": true,
"latedef": true,
"noarg": true,
"nonbsp": true,
"browser": true,
"jquery": true,
"nonew": true,
"globals": {
"JSON": true,
"QUnit": true, "test": true, "asyncTest": true, "module": true, "start": true, "equal": true, "deepEqual": true, "ok": true, "stubMethod": true, "arrayClose": true, "contains": true,
"kendo": true,
"define": true,
"angular": true,
"compareMatrices": true, "compareBoundingBox": true,
"baseSurfaceTests": true, "baseSurfaceEventTests": true
}
},
"jshintFiles": [
"src/kendo*.js",
"src/messages/kendo*.js",
"tests/**/test-helper.js"
]
}