-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1009 Bytes
/
package.json
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
{
"name": "name-goes-here",
"version": "0.0.1",
"description": "description here",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint && npx webpack",
"lint": "eslint ./src",
"prepublish": "npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+{GIT-URL-HERE}.git"
},
"author": "Guillaume Pitot",
"license": "MIT",
"bugs": {
"url": "{GIT-URL-HERE}/issues"
},
"homepage": "{GIT-URL-HERE}#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
}
}