-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
{
"name": "@groceristar/mini-sd",
"version": "0.1.7",
"license": "MIT",
"scripts": {
"bundle": "rollup -c",
"dev": "rollup -c -w",
"build": "npm run clean && npm run bundle",
"#prepare": "yarn clean",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"prepublish": "yarn clean && yarn build",
"test": "CI=test && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"jsonlint": "node jsonlint.config.js",
"format": "prettier",
"generate": "xxx",
"code-fix": "echo 'code-fix me'"
},
"description": "module to use static JSON files with food tech projects",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"browser": "dist/index.iife.js",
"repository": "https://github.com/GroceriStar/sd",
"author": "Arthur Tkachenko",
"private": false,
"release": {
"publishDir": "dist"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.16.11",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.5.1",
"babel-plugin-module-resolver": "4.1.0",
"coveralls": "3.1.1",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-json-schema": "6.1.0",
"jsonlint": "1.6.3",
"lint-staged": "12.3.7",
"nodemon": "2.0.15",
"regenerator-runtime": "0.13.9",
"rollup": "2.70.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy-assets": "2.0.3",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-notify": "1.1.0",
"rollup-plugin-replace": "2.2.0",
"shelljs": "0.8.5",
"shelljs.exec": "1.1.8",
"shx": "0.3.4"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"dependencies": {
"dayjs": "^1.8.14",
"lodash": "^4.17.11",
"path": "^0.12.7",
"uuid": "^8.0.0"
},
"files": [
"dist"
]
}