-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
49
50
51
52
53
54
55
56
{
"name": "from-exponential",
"version": "1.1.1",
"description": "Lightweight module to convert number from exponential notaton to a human readable string",
"main": "dist/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"files": [
"/src/",
"/types/",
"/dist/"
],
"scripts": {
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.js",
"bundle:min": "rollup -c build/rollup.uglify.config.js",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"lint": "eslint --ext .js ./src ./test",
"lint:fix": "eslint --ext .js ./src ./test --fix",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrpne/from-exponential.git"
},
"keywords": [
"format",
"from",
"exponential",
"number",
"pretty",
"human",
"readable",
"string"
],
"author": "shrpne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrpne/from-exponential/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.3.0",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2"
}
}