-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 KB
/
package.json
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
46
47
48
49
50
{
"name": "doctor-who",
"version": "1.1.1",
"license": "MIT",
"keywords": [
"doctor who",
"doctor",
"who",
"exterminate",
"companions",
"node",
"cli",
"browser"
],
"description": "Get Doctor Who companions names.",
"author": {
"email": "[email protected]",
"name": "Corentin Thomasset",
"url": "corentin-thomasset.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/doctor-who.git"
},
"scripts": {
"build": "microbundle build src/Generator.js",
"lint": "eslint src/ test/",
"test": "jest",
"coveralls": "jest test/ --coverage --collectCoverageFrom=src/*.js --coverageReporters=text-lcov | coveralls",
"prepublish": "yarn build"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"bin": {
"doctor-who": "bin/cli.js"
},
"dependencies": {
"commander": "^2.20.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-jest": "^24.7.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"jest": "^24.7.1",
"microbundle": "^0.11.0"
}
}