-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
29 lines (29 loc) · 950 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
{
"name": "measurementjs",
"version": "0.1.1a",
"description": "Nice unit-of-measure conversion.",
"readmeFilename": "README.md",
"main": "measurement.js",
"repository": {
"type": "git",
"url": "git://github.com/Philzen/measurement.js"
},
"license": "MIT",
"author": "Philzen <phil AT patient-radio.de>",
"scripts": {
"karma": "./node_modules/.bin/karma start",
"test": "echo $TRAVIS$CI | grep truetrue>/dev/null && npm run-script travis-publish || npm run-script karma",
"travis-publish": "npm run-script karma && cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"devDependencies": {
"coveralls": "^2.10.0",
"karma": "^0.12.3",
"karma-cli": "^0.0.4",
"karma-coverage": "^0.2.1",
"karma-jasmine": "^0.1.5",
"karma-requirejs": "^0.2.1",
"karma-jshint": ">=0.1",
"karma-phantomjs-launcher": "^0.1.3",
"phantomjs": "<2"
}
}