-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 950 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 950 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
34
35
36
37
38
39
40
41
42
{
"name": "yo-mamma",
"version": "1.3.0",
"description": "provide the best yo mama jokes",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"release": "np"
},
"babel": {
"presets": [
"latest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fadyazmy/yo-mamma.git"
},
"keywords": [
"yo",
"mama",
"jokes",
"joke"
],
"author": "Fady Azmy <fadood@live.co.uk> (https://fadyazmy.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fadyazmy/yo-mamma/issues"
},
"homepage": "https://github.com/Fadyazmy/yo-mamma#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"jest": "^21.2.1",
"np": "^2.16.0",
"watch": "^1.0.2"
}
}