-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"name": "accessible-nprogress",
"author": "Nicholas Mackey <[email protected]>",
"description": "Simple slim accessible progress bars",
"main": "dist/accessible-nprogress.js",
"style": "dist/accessible-nprogress.css",
"types": "typings/index.d.ts",
"license": "MIT",
"version": "2.1.2",
"repository": "nmackey/accessible-nprogress",
"scripts": {
"pretest": "yarn lint",
"lint": "eslint --ext .js --quiet src",
"test": "yarn test:unit --coverage && yarn build && yarn build:min && yarn test:acceptance",
"test:unit": "jest --config config/jest.config.js --env=jsdom",
"test:acceptance": "testcafe chrome:headless test-acceptance/tests/**/*test* -S -s test-acceptance/screenshots",
"build": "NODE_ENV=development webpack --config config/webpack.config.js",
"build:min": "NODE_ENV=production webpack --config config/webpack.config.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-transform-modules-commonjs": "7.15.4",
"@babel/preset-env": "7.15.4",
"axe-core": "4.3.3",
"axe-testcafe": "3.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.1.0",
"babel-loader": "8.2.2",
"css-loader": "6.2.0",
"css-minimizer-webpack-plugin": "3.0.2",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-testcafe": "0.2.1",
"jest": "27.1.0",
"mini-css-extract-plugin": "2.2.2",
"style-loader": "3.2.1",
"terser-webpack-plugin": "5.2.3",
"testcafe": "1.15.3",
"webpack": "5.52.0",
"webpack-cli": "4.8.0"
},
"keywords": [
"progress",
"progressbar",
"spinner",
"accessible",
"loading",
"xhr",
"ajax",
"promise"
]
}