-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 992 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
{
"name": "library-demo-less",
"version": "0.0.0",
"description": "Demo LESS library created to help follow along the tutorial in the article - Quick, effective and efficient way to test your separately hosted css library on your client, during development (LESS version)",
"main": "css/styles.css",
"scripts": {
"start": "npm-run-all --parallel less",
"less": "nodemon --exec lessc less/styles.less css/styles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ifycode/library-demo-less"
},
"keywords": [
"css",
"less",
"library",
"css library",
"less library"
],
"author": "Obiagba Mary | Code Collabo Community",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ifycode/library-demo-less/issues"
},
"homepage": "https://github.com/Ifycode/library-demo-less#readme",
"dependencies": {
"less": "^4.1.1"
},
"devDependencies": {
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}