forked from danez/pirates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 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
79
80
{
"name": "@astra-mod/pirates",
"description": "Properly hijack require",
"main": "lib/index.js",
"version": "4.2.0",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"test": "cross-env BABEL_ENV=test yarn run build && nyc ava",
"lint": "eslint --report-unused-disable-directives .",
"prepare-publish": "node scripts/preparePublish.js"
},
"files": [
"lib",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Astra-mod/pirate.git"
},
"engines": {
"node": ">= 6"
},
"author": {
"name": "Ari Porad",
"email": "[email protected]",
"url": "http://ariporad.com"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/register": "^7.18.9",
"ava": "^4.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-plugin-istanbul": "5.2.0",
"cross-env": "5.2.1",
"decache": "4.6.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "3.4.1",
"mock-require": "3.0.3",
"nyc": "^15.1.0",
"prettier": "1.19.1",
"rewire": "^6.0.0",
"rimraf": "3.0.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Astra-mod/pirate/issues"
},
"homepage": "https://github.com/Astra-mod/pirate#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"@babel/register"
]
},
"nyc": {
"include": [
"src/*.js"
],
"reporter": [
"json",
"text"
],
"sourceMap": false,
"instrument": false
}
}