-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
{
"name": "learn-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "static-server ./src/range-picker --port 9000",
"eslint": "eslint \"**/*.js\"",
"eslint:fix": "eslint --fix \"**/*.js\"",
"prettier": "prettier --check \"**/*.{js,css,html,md,json}\" --write",
"test:all": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:specific": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --findRelatedTests ./src/range-picker/index.spec.js",
"test:karma": "karma start karma.conf.js",
"test:cypress": "run-s start cypress",
"test:puppeteer": "node ./src/range-picker/puppeteer.spec.js",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@testing-library/jest-dom": "^5.1.1",
"cross-env": "^7.0.2",
"cypress": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.10.3",
"full-icu": "^1.3.1",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jest": "^25.4.0",
"jest-puppeteer": "^4.4.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.1",
"karma-json-reporter": "^1.2.1",
"prettier-eslint": "^9.0.1",
"puppeteer": "^3.0.0",
"static-server": "^2.2.1"
}
}