-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.66 KB
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
{
"name": "segment",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint -f codeframe '**/*.{js,mjs,jsx}'",
"lint-fix": "eslint -f codeframe '**/*.{js,mjs,jsx}' --fix",
"format": "prettier --write '**/*.{js,mjs,jsx,json}'",
"check-format": "prettier --check '**/*.{js,mjs,jsx,json}'",
"check": "npm run -s check-format && npm run -s lint && npm run -s test",
"test": "jest --env=node --coverage"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.4.2",
"prettier": "^2.2.1"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}