-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
{
"name": "simplewordwrapper",
"version": "1.0.0",
"description": "It's a little jQuery module developed to help for website developers, when they need to wrap each word or divided the words to some groups. For example in menu, when you need divided link's text in two group but you couldn't do this in back-end of your CMS.",
"main": "source/js/simpleWordWrapper.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bladeaweb/simpleWordWrapper.git"
},
"keywords": [
"simple word wrapper",
"word wrapper",
"jQuery word wrapper",
"jQuery simple word wrapper",
"jQuery",
"jQuery plugin"
],
"author": "Alexander Sharkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bladeaweb/simpleWordWrapper/issues"
},
"homepage": "https://github.com/bladeaweb/simpleWordWrapper#readme",
"devDependencies": {
"grunt": "^1.0.2",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0"
},
"scripts": {
"postinstall": "npm run default",
"dev": "node_modules/grunt-cli/bin/grunt dev",
"default": "node_modules/grunt-cli/bin/grunt"
}
}