-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 875 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
{
"name": "attach.js",
"version": "1.0.6",
"description": "Attaches JavaScript to HTML without messy selectors.",
"homepage": "http://nicbell.github.io/attach.js/",
"ignore": [
"**/.*",
"*.json",
"*.md",
"*.nuspec"
],
"main": "attach.js",
"repository": {
"type": "git",
"url": "git://github.com/nicbell/attach.js.git"
},
"author": "Nic Bell",
"license": "MIT",
"keywords": ["javascript", "attach", "DOM"],
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2"
},
"scripts": {
"pretest": "npm i -g grunt-cli && npm i",
"test": "grunt test --verbose",
"pregrunt": "npm i -g grunt-cli && npm i",
"grunt": "grunt"
}
}