This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@meltwater/makenew-node-lib",
"version": "7.2.1",
"description": "npm package skeleton for Meltwater Node.js libraries.",
"main": "dist/index.js",
"module": "index.js",
"sideEffects": false,
"keywords": [
"meltwater",
"node"
],
"homepage": "https://github.com/meltwater/makenew-node-lib",
"bugs": "https://github.com/meltwater/makenew-node-lib/issues",
"repository": "meltwater/makenew-node-lib",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"data",
"dist",
"docs"
],
"scripts": {
"test": "nyc ava",
"pretest": "npm-run-all lint",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:inspect": "node --inspect node_modules/ava/profile",
"test:inspect:watch": "nodemon --inspect node_modules/ava/profile",
"lint": "gulp lint",
"clean": "del dist",
"build": "npm-run-all --parallel build:*",
"prebuild": "npm-run-all clean",
"build:index": "babel --source-maps --out-dir dist index.js",
"build:lib": "babel --source-maps --ignore='**/*.spec.js' --out-dir dist/lib lib",
"dist": "npm-run-all build",
"predist": "npm-run-all test",
"preversion": "npm-run-all dist",
"postversion": "git push && git push --tags",
"example": "babel-node examples",
"example:watch": "nodemon --exec babel-node examples",
"example:inspect": "babel-node --inspect examples",
"example:inspect:watch": "nodemon --exec babel-node --inspect examples",
"watch": "gulp watch",
"pretty": "prettier --ignore-path .gitignore --write '**/*.(js|json|graphql)'",
"format": "npm-run-all --serial pretty format:*",
"format:js": "standard --fix",
"report": "nyc report"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"ava": {
"files": [
"**/*.spec.js",
"!dist/**/*",
"!package/**/*"
],
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"**/index.js",
"dist/**/*.js",
"package/**/*.js",
"examples/**/*.js",
"**/*.spec.js"
],
"reporter": [
"html",
"lcov",
"text"
]
},
"nodemonConfig": {
"ignore": [
"**/*.spec.js",
"test/",
"tmp/"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"endOfLine": "lf"
},
"engines": {
"node": ">=10.13.0"
},
"resolutions": {
"eslint": "^7.12.1",
"standard": "^16.0.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@meltwater/examplr": "^5.0.0",
"ava": "^3.3.0",
"del-cli": "^3.0.0",
"eslint": "^7.12.1",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.0",
"gulp-jsonlint": "^1.1.2",
"gulp-standard": "^14.0.0",
"gulp-watch": "^5.0.0",
"gulplog": "^1.0.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"prettier": "^2.0.1",
"standard": "^16.0.2"
}
}