-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "@twipped/jpath",
"version": "2.1.0",
"description": "Transform, and selectively extract data from objects via a jsonpath like syntax.",
"type": "module",
"exports": {
".": "./src/index.js",
"./mobx": "./src/observable.js",
"./taxonomy": "./src/taxonomy.js"
},
"scripts": {
"test": "tap -R base --no-coverage tests",
"cover": "tap -R terse --coverage tests",
"lint": "eslint './{src,tests}/**/*.{js,jsx}' --fix"
},
"engines": {
"node": ">=12.10.0"
},
"author": "Jocelyn Badgley <[email protected]> (http://twipped.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Twipped/jpath"
},
"devDependencies": {
"eslint": "~8.5.0",
"eslint-config-twipped": "~6.0.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.0.0",
"tap": "~15.1.5"
},
"files": [
"dist",
"src",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"dependencies": {
"@twipped/utils": "~4.2.0"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "twipped/node-rollup"
}
}