-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "tasks-jsbasic",
"version": "1.0.0",
"description": "Repo with tasks for JS Basic",
"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/javascript-info/tasks-js-dom-interfaces.git"
},
"author": "Artsiom Mezin",
"license": "ISC",
"bugs": {
"url": "https://github.com/javascript-info/tasks-jsbasic/issues"
},
"homepage": "https://github.com/javascript-info/tasks-jsbasic#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@testing-library/jest-dom": "^5.5.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.5.1",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.2",
"full-icu": "^1.3.1",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"jest": "^25.5.4",
"jest-fetch-mock": "^3.0.3"
},
"dependencies": {
"node-static": "^0.7.11",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}