-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "get-harry-potter-names",
"version": "3.0.0",
"description": "Get random Harry Potter names from",
"main": "dist/index.js",
"scripts": {
"start": "npm run test",
"prebuild": "rimraf dist",
"build:main": "babel --copy-files --out-dir dist --ignore *test.js src",
"build:umd": "webpack-cli --output-filename index.umd.js",
"test": "NODE_ENV=test nyc mocha test",
"watch": "mocha test --watch",
"lint": "eslint src",
"validate": "npm-run-all test build:main build:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/veyselusta/harry-potter-names"
},
"files": [
"dist"
],
"author": "veyselusta <[email protected]>",
"license": "(MIT)",
"homapage": "https://github.com/veyselusta/harry-potter-names",
"bugs": {
"url": "https://github.com/veyselusta/harry-potter-names/issues"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"ghooks": "^2.0.4",
"json-loader": "^0.5.7",
"mocha": "^9.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"instrument": false,
"sourceMap": false,
"require": [
"@babel/register"
],
"include": [
"src"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "defaults"
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
}
}