-
Notifications
You must be signed in to change notification settings - Fork 3
/
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": "librato-client",
"version": "1.0.0",
"description": "Send metrics from the browser to Librato",
"repository": {
"type": "git",
"url": "https://github.com/luk3thomas/librato-client.git"
},
"main": "lib/librato-client.js",
"files": [
"src"
],
"scripts": {
"test": "./node_modules/.bin/karma start --browsers PhantomJS --single-run",
"testw": "./node_modules/.bin/karma start --browsers PhantomJS",
"prepublish": "npm run compile",
"compile": "./node_modules/.bin/webpack",
"start": "./node_modules/.bin/webpack -w"
},
"author": "Luke Thomas",
"license": "ISC",
"devDependencies": {
"bluebird": "3.0.5",
"coffee-loader": "0.7.2",
"coffee-script": "1.10.0",
"curry": "1.2.0",
"jasmine-core": "2.3.4",
"karma": "0.13.19",
"karma-jasmine": "0.3.6",
"karma-phantomjs-launcher": "0.2.1",
"karma-webpack": "1.7.0",
"phantomjs": "1.9.18",
"script-loader": "0.6.1",
"sinon": "1.17.2",
"webpack": "1.12.3"
},
"dependencies": {
"lodash": "4.17.11",
"ua-parser-js": "0.7.19"
}
}