-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
50
51
52
{
"name": "@studio/ndjson",
"version": "2.1.0",
"description": "Transforms to parse and stringify ndjson",
"scripts": {
"lint": "eslint .",
"test": "mocha && mochify",
"watch": "mocha --watch",
"preversion": "npm run lint && npm run prettier:check && npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check '**/*.{js,json,md}'",
"prettier:write": "prettier --write '**/*.{js,json,md}'"
},
"browser": {
"stream": "@studio/browser-stream"
},
"keywords": [
"json",
"ndjson",
"transform"
],
"author": "Maximilian Antoni <max@javascript.studio>",
"homepage": "https://github.com/javascript-studio/studio-ndjson",
"eslintConfig": {
"extends": "@studio"
},
"mochify": {
"driver": "puppeteer",
"bundle": "esbuild --bundle --color --sourcemap=inline --define:process.env.NODE_DEBUG=\"\"",
"bundle_stdin": "require"
},
"dependencies": {
"@studio/browser-stream": "^1.0.0"
},
"devDependencies": {
"@mochify/cli": "^0.4.1",
"@mochify/driver-puppeteer": "^0.3.1",
"@sinonjs/referee-sinon": "^12.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/studio-ndjson.git"
},
"license": "MIT"
}