-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "multiline-control",
"version": "1.0.2",
"description": "Form control that allows to edit multiple lines, change order, remove lines.",
"main": "dist/jquery.multiline-control.js",
"scripts": {
"jscs": "jscs src",
"test": "npm run jscs && gulp travis --verbose"
},
"keywords": [
"jquery",
"plugin",
"multiline-control",
"multiple",
"lines"
],
"repository": {
"type": "git",
"url": "https://github.com/vedmant/multiline-control"
},
"bugs": {
"url": "https://github.com/vedmant/multiline-control/issues"
},
"author": {
"name": "Vedmant",
"email": "[email protected]",
"url": "https://github.com/vedmant"
},
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.13.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^2.7.0",
"grunt-karma": "^0.12.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-qunit": "^1.2.1",
"phantomjs": "^2.1.7",
"pump": "^1.0.1",
"qunitjs": "^2.0.1"
},
"dependencies": {
"jquery": ">=1.5.1"
}
}