-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 787 Bytes
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
{
"name": "chrome-gestures",
"version": "0.1.0",
"description": "Touchpad gestures chrome plugin",
"main": "index.js",
"author": "Pawel Matyjasik",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"copyfiles": "^2.1.0",
"css-loader": "^1.0.0",
"jasmine": "^3.2.0",
"rxjs": "^6.4.0",
"style-loader": "^0.23.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"package": "node_modules/.bin/webpack && npm run copy",
"copy": "copyfiles --flat manifest.json src/background.js dist/",
"test": "babel-node --presets @babel/preset-env spec/run.js"
}
}