-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 878 Bytes
/
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": "read-json-sync",
"version": "2.0.1",
"description": "Read and parse a JSON file synchronously",
"repository": "shinnn/read-json-sync",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"bench": "node benchmark/runner string-slice && node benchmark/runner string-replace && node benchmark/runner buffer-string-slice",
"pretest": "eslint .",
"test": "nyc node test/test.js"
},
"files": [
"index.js"
],
"keywords": [
"data",
"json",
"file",
"read",
"load",
"bom",
"parse",
"synchronous",
"synchronously",
"sync"
],
"devDependencies": {
"@shinnn/eslint-config": "^6.8.7",
"chalk": "^2.4.1",
"eslint": "^5.10.0",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}