-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "vulgar.js",
"version": "0.7.0",
"description": "Tiny vulgar and fraction library in javascript",
"keywords": [
"nodejs",
"browser",
"vulgar",
"fraction",
"decimal"
],
"main": "lib/index.js",
"scripts": {
"build": "npx babel src/ --out-dir lib/",
"test": "npx jest ./test/",
"coveralls": "npm run test && cat ./coverage/lcov.info | coveralls",
"lint": "npx eslint -c .eslintrc src/",
"prepublish": "npm run build"
},
"author": "Philip Knape <philip.knape@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Knape/vulgar.js.git"
},
"bugs": {
"url": "https://github.com/Knape/vulgar.js/issues"
},
"homepage": "https://github.com/Knape/vulgar.js",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"coveralls": "^3.0.2",
"eslint": "^3.19.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",
"jest": "^24.1.0"
}
}