generated from maslianok/npm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "js-floating-point",
"version": "1.0.0",
"description": "Dead-simple and lightning-fast solution for the floating-point issue in JavaScript",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.9.0",
"rimraf": "^3.0.0"
},
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"lint": "eslint src tests",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maslianok/js-floating-point.git"
},
"keywords": [
"javascript",
"floating-point",
"floating"
],
"author": "Vitalii Maslianok",
"license": "MIT",
"bugs": {
"url": "https://github.com/maslianok/js-floating-point/issues"
},
"homepage": "https://github.com/maslianok/js-floating-point#readme"
}