-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 848 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
{
"name": "intro-angular",
"version": "1.1.0",
"description": "Une intro 'pratique' à Angular 1",
"main": "",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run sass\"",
"dev": "lite-server",
"sass": "node-sass --watch --output css css"
},
"repository": {
"type": "git",
"url": "https://github.com/Pierrci/intro-angular.git"
},
"author": "Pierric Cistac",
"devDependencies": {
"concurrently": "^2.1.0",
"gulp": "^3.8.11",
"gulp-clean-css": "^2.0.8",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-uglify": "^1.2.0",
"lite-server": "^2.2.0",
"node-sass": "^3.7.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Pierrci/intro-angular/blob/master/LICENSE"
}
],
"homepage": "https://github.com/Pierrci/intro-angular"
}