-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "grunt-nose",
"version": "1.1.0",
"description": "Run python unit tests using nose",
"homepage": "https://github.com/thusoy/grunt-nose",
"author": {
"name": "Tarjei Husøy",
"url": "https://github.com/thusoy"
},
"repository": {
"type": "git",
"url": "git://github.com/thusoy/grunt-nose.git"
},
"bugs": {
"url": "https://github.com/thusoy/grunt-nose/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"scripts": {
"devsetup": "cd tasks/lib && pip download nose==1.3.7 --no-binary :all: || pip install --download . nose==1.3.7 --no-use-wheel",
"prepublish": "grunt clean",
"postinstall": "cd tasks/lib && pip install nose-1.3.7.tar.gz --target .",
"grunt": "grunt"
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt-release": "~0.14.0",
"load-grunt-tasks": "~3.5.2",
"xml2js": "~0.4.5"
},
"keywords": [
"gruntplugin",
"nose",
"python",
"testing",
"unittest"
]
}