-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "its",
"version": "0.2.0",
"description": "Detect trailing spaces in all the inputs",
"main": "index.js",
"scripts": {
"test": "jest",
"build:dev": "webpack",
"build:css": "node-sass --omit-source-map-url _sass/options.scss ./dist/assets/css/options.css",
"watch:css": "npm run build:css -- --watch",
"watch:dev": "webpack --watch",
"build:prod": "webpack --mode=production",
"lint": "eslint ./src",
"start": "web-ext run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"bulma": "^0.7.4"
}
}