-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 762 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 762 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
{
"name": "javascript-tutorials",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"watch": "babel src -d dist -w"
},
"babel": {
"presets": ["es2015"],
"plugins": [],
"minified": true,
"ignore": "*test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikhailMasny/javascript-tutorials.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MikhailMasny/javascript-tutorials/issues"
},
"homepage": "https://github.com/MikhailMasny/javascript-tutorials#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1"
}
}