-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
57
58
59
{
"name": "tiny-jsonl",
"version": "3.0.4",
"description": "Stringify Objects and Arrays into JSONL Strings, and parse JSONL Strings into Objects and Arrays.",
"main": "dist/tiny-jsonl.cjs",
"exports": {
"types": "./types/jsonl.d.ts",
"import": "./dist/tiny-jsonl.js",
"require": "./dist/tiny-jsonl.cjs"
},
"type": "module",
"types": "types/jsonl.d.ts",
"engines": {
"node": ">=12"
},
"engineStrict": true,
"files": [
"dist/tiny-jsonl.cjs",
"dist/tiny-jsonl.js",
"types/jsonl.d.ts"
],
"scripts": {
"build": "npm run lint && npm run rollup && npm run mocha",
"changelog": "auto-changelog -p",
"lint": "eslint --fix *.js src/*.js test/*.js",
"mocha": "nyc mocha test/*.js",
"rollup": "rollup --config",
"test": "npm run lint && npm run mocha",
"types": "npx -p typescript tsc src/jsonl.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"prepare": "husky"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"auto-changelog": "^2.4.0",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"mocha": "^10.6.0",
"nyc": "^17.0.0",
"precise": "^4.0.3",
"rollup": "^4.18.0",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avoidwork/tiny-jsonl.git"
},
"keywords": [
"jsonl",
"object",
"array",
"string"
],
"author": "Jason Mulligan <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/avoidwork/tiny-jsonl/issues"
},
"homepage": "https://github.com/avoidwork/tiny-jsonl#readme"
}