-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 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": "@myknowledgemap/openbadges-google-sheets",
"version": "1.0.0",
"description": "Add-on for Google Sheets with OpenBadges.me",
"scripts": {
"precommit": "lint-staged",
"build": "webpack",
"test": "jest",
"test:ci":
"jest --collectCoverage --ci --testResultsProcessor=jest-junit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "tslint -p tsconfig.json",
"lint:ci":
"tslint -p tsconfig.json --out reports/tslint/tslint-results.xml --format junit",
"package": "node ./scripts/package",
"deploy": "node ./scripts/deploy"
},
"author": "Harry Mitchinson",
"license": "MIT",
"lint-staged": {
"*.ts": ["tslint --fix", "prettier --parser typescript --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.js": ["prettier --parser babylon --write", "git add"]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-typescript": "^7.0.0-beta.46",
"@types/google-apps-script": "0.0.21",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.7",
"archiver": "^2.1.1",
"babel-loader": "^8.0.0-beta.2",
"chrome-webstore-upload": "^0.2.2",
"core-js": "^2.5.5",
"coveralls": "^3.0.0",
"dotenv-safe": "^5.0.1",
"gas-webpack-plugin": "^0.2.1",
"html-loader": "^0.5.5",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-junit": "^3.7.0",
"lint-staged": "^7.0.5",
"prettier": "1.12.1",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"tslint-immutable": "^4.5.4",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
},
"dependencies": {}
}