-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
46
47
48
{
"name": "round.js",
"version": "1.1.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "node_modules/.bin/babel src/ --out-dir lib/",
"test": "node_modules/.bin/mocha --require babel-core/register ./test/",
"cover": "node_modules/.bin/istanbul cover --report lcov --dir=test/coverage node_modules/.bin/_mocha --require node_modules/babel-core/register ./test/",
"coveralls": "npm run cover -- --report lcovonly && cat ./test/coverage/lcov.info | coveralls",
"lint": "node_modules/.bin/eslint -c .eslintrc src/"
},
"keywords": [
"round",
"numbers",
"float",
"increment",
"decrement",
"nearest"
],
"author": "Philip Knape <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Knape/round.js.git"
},
"bugs": {
"url": "https://github.com/Knape/round.js/issues"
},
"homepage": "https://github.com/Knape/round.js",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}