-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
44
45
{
"name": "javascript",
"version": "1.0.0",
"description": "javaScript exercises",
"main": "index.js",
"scripts": {
"test": "test",
"babel-version": "babel --version",
"build": "babel src -d lib",
"check-types": "tsc"
},
"repository": {
"type": "git",
"url": "\"https://github.com/AndreasGiersch/javaScript.git\""
},
"keywords": [
"\"exercises\""
],
"author": "Andreas Giersch <andreasgiersch@web.de>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.8",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"typescript": "^3.8.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"plugins": [
"@babel/plugin-transform-typescript"
],
"dependencies": {
"regenerator-runtime": "^0.13.5",
"xhr2": "^0.2.0"
}
}