-
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) · 765 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 765 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": "quick-maths",
"version": "1.0.1",
"description": "Do quick maffs like BIG SHAQ!",
"main": "lib/index.js",
"author": "Jakub Benes <jukben@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jukben/quick-maths"
},
"bugs": {
"url": "https://github.com/jukben/quick-maths/issues"
},
"homepage": "https://github.com/jukben/quick-maths",
"scripts": {
"test": "jest",
"build": "babel index.js -o lib/index.js",
"dev": "npm run build -- -w",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"jest": "24.9.0"
},
"babel": {
"presets": [
"@babel/env"
]
}
}