-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1007 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1007 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "shalmal-js",
"version": "1.0.0",
"description": "practice work",
"main": "index.js",
"watch": {
"test":{
"patterns": [
"src"
],
"extensions": "js,css,json",
"quiet": false
}
},
"scripts": {
"test": "npx webpack --config webpack.config.js",
"start": "npx webpack --config webpack.config.js && http-server",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shalmal90/JavaScript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shalmal90/JavaScript/issues"
},
"homepage": "https://github.com/shalmal90/JavaScript#readme",
"dependencies": {
"extract-text-webpack-plugin": "^3.0.2",
"http-server": "^0.12.1",
"less": "^3.11.1",
"lodash": "^4.17.15",
"npm-watch": "^0.6.0",
"webpack": "^4.42.0"
},
"devDependencies": {
"css-loader": "^3.4.2",
"style-loader": "^1.1.3",
"webpack-cli": "^3.3.11"
}
}