-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@fordi-org/noodly",
"version": "0.1.0",
"description": "A Functional State Machine (FSM) to act as a store for reactive applications.",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"test": "bash -c 'NODE_OPTIONS=--experimental-vm-modules jest --coverage'",
"watch": "bash -c 'NODE_OPTIONS=--experimental-vm-modules jest --coverage --watchAll'",
"lint": "eslint ./src/**/*.mjs",
"verify": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "github:Fordi/noodly"
},
"files": [
"README.md",
"src/index.js"
],
"keywords": [
"state",
"store",
"functional",
"machine"
],
"author": "Bryan Elliott <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fordi/noodly/issues"
},
"homepage": "https://github.com/Fordi/noodly#readme",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^28.1.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"airbnb",
"plugin:jest/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": false,
"modules": true
},
"ecmaVersion": 2020
},
"plugins": [
"import"
],
"rules": {
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"import/extensions": [
"error",
"ignorePackages"
],
"import/no-extraneous-dependencies": [
"warn",
{
"devDependencies": [
"build/*.mjs"
]
}
],
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"info"
]
}
]
},
"settings": {}
},
"jest": {
"testMatch": [
"./**/*.test.mjs"
],
"transform": {},
"collectCoverage": true,
"collectCoverageFrom": [
"./**/*.mjs"
],
"coverageReporters": [
"text-summary",
"html"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}