-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "@twipped/condition",
"version": "1.0.0",
"description": "Complex state machine engine for performing multi-level data analysis",
"type": "module",
"exports": {
".": "./src/condition.js",
"./mobx": "./src/observable.js",
"./prop-types": "./src/prop-types.js",
"./utils": "./src/utils.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/condition"
},
"optionalDependencies": {
"mobx": ">=6.3.0",
"prop-types": ">=15.0.0"
},
"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",
"tapsuite": "~2.0.1"
},
"files": [
"src",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"dependencies": {
"@twipped/jpath": "~2.1.0",
"@twipped/utils": "~4.2.0",
"date-fns": "~2.27.0"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "twipped/node-esm"
}
}