-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "floatify",
"version": "1.4.0",
"description": "Common helper to floatify strings",
"main": "src/floatify.js",
"directories": {
"test": "test"
},
"repository": {
"url": "https://github.com/pocketrocket/floatify"
},
"bugs": {
"url": "https://github.com/pocketrocket/floatify/issues"
},
"homepage": "https://github.com/pocketrocket/floatify#readme",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"lint": "eslint src",
"test": "nyc --reporter=html --reporter=text --reporter=clover mocha test",
"prepublishOnly": "# also runs npm run prebuild",
"prebuild": "npm run test # also runs npm run pretest",
"pretest": "npm run lint"
},
"keywords": [
"floatify",
"float",
"string",
"convert",
"decimals",
"localization",
"numbers"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^9.35.0",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-plugin-react": "^7.12.4",
"mocha": "^11.7.2",
"nyc": "^17.1.0"
},
"author": "pocketrocket <pocketrocket@codecaboose.com>",
"contributors": [
"Ioannis Chiotakakos (https://github.com/jchiotaka)"
],
"license": "MIT",
"readmeFilename": "README.md"
}