forked from noazark/weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "weather.js",
"version": "0.0.2",
"description": "A conclusive JavaScript weather library.",
"homepage": "http://weatherjs.com",
"author": "Noah H. Smith <[email protected]> (http://noazark.github.com/)",
"keywords": [
"weather"
],
"engines": {
"node": ">=0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/noazark/weather.git"
},
"bugs": {
"url": "https://github.com/noazark/weather/issues"
},
"license": "MIT",
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-uglify": "^0.11.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.12.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-expect": "^1.1.1",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.3",
"sinon": "^1.17.3",
"uglify-js": "^2.6.1"
},
"scripts": {
"test": "./node_modules/.bin/grunt deploy && ./node_modules/.bin/mocha test && ./node_modules/.bin/karma start --single-run"
},
"main": "./dist/weather.js"
}