-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "tasks-js",
"version": "1.0.0",
"description": "Repo with tasks for JS",
"main": "index.js",
"scripts": {
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint --fix \"./**/*.js\"",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:specific": "cross-env NODE_ICU_DATA=node_modules/full-icu jest -t 'intro/sum'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascriptru/tasks-js-2.git"
},
"author": "Vladimir Shevchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/javascriptru/tasks-js-2/issues"
},
"homepage": "https://github.com/javascriptru/tasks-js-2#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.1",
"@testing-library/jest-dom": "^5.11.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.5.1",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.22.1",
"full-icu": "^1.3.1",
"jest": "25.5.4",
"jest-fetch-mock": "^3.0.3"
}
}