-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "jsonstream-paths",
"version": "1.1.1",
"description": "Get all possible paths for JSONStream",
"main": "dist/index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/jsonstream-paths.git"
},
"contributors": [
"Contra <yo@contra.io> (http://contra.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/jsonstream-paths/issues"
},
"homepage": "https://github.com/staeco/jsonstream-paths#readme",
"files": [
"dist"
],
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src test --fix",
"test": "npm run-script lint && mocha --require @babel/register --recursive --reporter spec --timeout 20000"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/register": "^7.0.0",
"@stae/babel-node": "^1.0.0",
"@stae/linters": "^1.0.0",
"get-stream": "^6.0.0",
"into-stream": "^6.0.0",
"mocha": "^8.0.0",
"rimraf": "^3.0.0",
"should": "^13.0.0"
},
"dependencies": {
"is-plain-obj": "^2.0.0",
"jsonparse": "^1.3.1",
"readable-stream": "^3.6.0",
"through2": "^4.0.0"
}
}