-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.78 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.78 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
{
"name": "@myknowledgemap/openbadges-google-forms",
"version": "1.0.0",
"description": "Add-on for Google Forms with OpenBadges.me",
"scripts": {
"precommit": "lint-staged",
"build": "tsc && babel src --out-dir dist --extensions \".ts\"",
"test": "jest",
"test:ci":
"jest --collectCoverage --ci --testResultsProcessor=jest-junit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "tslint --project \".\"",
"lint:ci":
"tslint --project \".\" --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"]
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-typescript": "^7.0.0-beta.40",
"@types/google-apps-script": "0.0.21",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.6",
"archiver": "^2.1.1",
"babel-plugin-transform-html-import-to-string": "0.0.1",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-remove-export": "^1.0.0",
"chrome-webstore-upload": "^0.2.2",
"coveralls": "^3.0.0",
"dotenv-safe": "^5.0.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jest-junit": "^3.6.0",
"lint-staged": "^7.0.0",
"prettier": "1.11.1",
"ts-jest": "^22.4.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}