forked from Food-Static-Data/sd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.51 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
{
"name": "@groceristar/sd-wrapper",
"version": "4.14.0",
"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": "npm run snyk-protect; yarn clean && yarn code-fix && yarn build",
"test": "CI=test && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"jsonlint": "node jsonlint.config.js",
"generate": "node ./runner/generate",
"lint": "standard",
"code-fix": "standard --fix",
"format": "prettier",
"precommit": "lint-staged",
"snyk-protect": "snyk protect"
},
"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.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.5.4",
"@groceristar/food-dataset-csv-parser": "0.1.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.8.0",
"babel-plugin-module-resolver": "3.2.0",
"coveralls": "3.0.4",
"husky": "3.0.0",
"jest": "24.8.0",
"jest-json-schema": "2.0.2",
"jsonlint": "1.6.3",
"lint-staged": "9.2.0",
"nodemon": "1.19.1",
"regenerator-runtime": "0.13.2",
"rollup": "1.16.7",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-copy-assets": "2.0.1",
"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.3",
"shelljs.exec": "1.1.8",
"shx": "0.3.2",
"standard": "12.0.1"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@groceristar/static-data-generator": "^0.1.1",
"csv-parser": "^2.3.0",
"dayjs": "^1.8.14",
"lodash": "^4.17.11",
"path": "^0.12.7",
"path-exists": "^4.0.0",
"snyk": "^1.192.4",
"uuid": "^3.3.2",
"yarn": "^1.16.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run code-fix",
"after": "lint-staged",
"then": "yarn precommit"
}
},
"files": [
"dist",
"src/data"
],
"snyk": true
}