-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "@sbp/okturtles.data",
"version": "0.1.5",
"description": "Provides a useful in-memory datastore for SBP",
"main": "dist/main.cjs",
"type": "module",
"exports": {
"import": "./dist/module.mjs",
"require": "./dist/main.cjs"
},
"homepage": "https://github.com/okTurtles/okTurtles.data",
"scripts": {
"test": "mocha --require @babel/register -R spec *.test.js",
"build": "babel index.js -o dist/main.cjs && flow-remove-types -p -o dist/module.mjs index.js",
"flow": "flow",
"lint": "eslint",
"clean": "rm -f dist/*"
},
"browserslist": "> 0.25% and not dead and since 2020",
"author": "Greg Slepak",
"license": "MIT",
"eslintConfig": {
"root": true,
"parser": "@babel/eslint-parser",
"plugins": [
"flowtype"
],
"extends": [
"plugin:flowtype/recommended",
"standard"
]
},
"eslintIgnore": [
"dist/*",
"node_modules/*",
"**/*.md"
],
"devDependencies": {
"@babel/cli": "7.17.0",
"@babel/core": "7.17.0",
"@babel/eslint-parser": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-flow": "7.16.7",
"@babel/register": "7.17.0",
"eslint-config-standard": "17.0.0-0",
"eslint-plugin-flowtype": "8.0.3",
"flow-bin": "0.170.0",
"flow-remove-types": "2.171.0",
"mocha": "9.2.0",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "13.0.1"
},
"peerDependencies": {
"@sbp/sbp": "2.x"
}
}