-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "crypedit_build",
"version": "0.5.5",
"description": "An encrypted version of grammarly",
"scripts": {
"copy": "cp -t dist/src/ src/content.js src/textarea.css -r src/popup",
"build": "parcel build src/background.js -d dist/src/ -o background --no-minify && npm run copy",
"watch": "npm run copy && parcel watch src/* --hmr-hostname localhost -d dist/src/ -o background"
},
"license": "Apache 2.0",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clang-format": "^1.2.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"parcel-bundler": "^1.7.1",
"prettier": "^2.0.5"
},
"dependencies": {
"@tensorflow/tfjs": "^1.3.2",
"@openmined/syft.js": "github:openmined/syft.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css}": [
"prettier --write",
"git add"
]
}
}