-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.42 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
60
61
62
63
64
65
{
"name": "edn-data",
"version": "1.1.2",
"engines": {
"node": ">=12.0.0"
},
"description": "EDN parser and generator that work with plain JS data, with support for TS and node streams",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"dist/*",
"stream.js"
],
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"build": "tsc",
"lint": "eslint '*/**/*.ts'",
"fix": "npm run -s lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorinvo/edn-data.git"
},
"keywords": [
"edn",
"parser",
"typescript",
"stream"
],
"author": "Jorin Vogel",
"license": "MIT",
"bugs": {
"url": "https://github.com/jorinvo/edn-data/issues"
},
"homepage": "https://github.com/jorinvo/edn-data#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"ava": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.4",
"stream-to-array": "^2.3.0",
"ts-node": "^8.8.2",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}