-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.79 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": "clippy",
"version": "1.9.2",
"description": "Clippy MS Word Office asistant is now back to help inside your browser!",
"main": "lib/index.js",
"scripts": {
"test": "jest --verbose",
"test:coverage": "jest --collect-coverage",
"test:upload-coverage": "jest --verbose --coverage --coverageReporters=text-lcov | coveralls",
"build": "npm run build:js && web-ext build --ignore-files test coverage README.md package*.json assets/img/screenshots src",
"build:js": "rimraf lib && babel src --out-dir lib",
"watch": "rimraf lib && babel --watch src --out-dir lib",
"extension": "web-ext run --ignore-files test coverage README.md package*.json assets/img/screenshots src",
"lint": "eslint --max-warnings=0 src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capJavert/clippy.git"
},
"author": "Ante Barić (capJavert)",
"license": "MIT",
"bugs": {
"url": "https://github.com/capJavert/clippy/issues"
},
"homepage": "https://github.com/capJavert/clippy#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.6",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.4",
"jest": "^29.2.0",
"rimraf": "^3.0.2",
"web-ext": "^3.1.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/index.js",
"<rootDir>/src/state.js"
]
},
"volta": {
"node": "16.13.2"
}
}