-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "setting-code-snippet",
"version": "1.0.0",
"description": "Snippet of JavaScript that detects if the extension is installed and can push settings from a Website.",
"main": "dist/main.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.js && cp -f dist/main.js docs/js/snippet.js",
"start": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insitu-project/setting-code-snippet.git"
},
"author": "Benjamin Menant <bmenant@lmem.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/insitu-project/setting-code-snippet/issues"
},
"homepage": "https://github.com/insitu-project/setting-code-snippet#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"dotenv": "^8.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}