-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.21 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "sprogress",
"version": "1.1.2",
"description": "Progress bar on Scroll",
"main": "./src/sprogress.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run test:only",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require @babel/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test --fix",
"webpack": "webpack --colors --mode=production",
"build": "cross-env BABEL_ENV=production npm run webpack",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/theghostyced/sprogress.git"
},
"keywords": [
"boilerplate",
"npm",
"module",
"node",
"javascript",
"progress bar",
"scroll",
"sprogress"
],
"author": "Daniel Eze <dan4allu93@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theghostyced/sprogress/issues"
},
"homepage": "https://github.com/theghostyced/sprogress#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.4.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"mocha": "^6.1.3",
"nyc": "^13.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rewire": "^4.0.1",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
],
"*.{js,json}": [
"prettier --check"
]
}
}