forked from Snivilization/nodejs-esm-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.13 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
{
"name": "nodejs-esm-starter",
"version": "0.0.1",
"description": "Starter project for NodeJs esm packages, with rollup, typescript, mocha, chai, eslint, istanbul/nyc, gulp",
"type": "module",
"main": "./dist/nodejs-esm-starter-src-bundle.js",
"exports": {
".": "./dist/nodejs-esm-starter-src-bundle.js",
"./package.json": "./package.json"
},
"files": [
"src",
"lib"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"clean": "gulp clean",
"build": "gulp build-prod",
"build:d": "gulp build-dev",
"prod": "gulp prod",
"dev": "gulp dev",
"watch": "gulp watch",
"lint": "gulp lint",
"fix": "gulp fix",
"check:18": "gulp i18next",
"test": "gulp mocha",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"exec": "node ./dist/infexor-src-bundle.js",
"audit": "npm audit --production",
"dep": "echo 'todo: define a dependency checker like npm-check-updates (ncu) or depcheck'",
"release": "npm run _standard:rel",
"_gulp:rel": "release",
"_standard:rel": "standard-version",
"standard:f": "standard-version --first-release",
"change:all": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
"remm": "rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snivilization/nodejs-esm-starter.git"
},
"keywords": [
"esm",
"nodejs"
],
"author": "plastikfan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Snivilization/nodejs-esm-starter/issues"
},
"homepage": "https://github.com/Snivilization/nodejs-esm-starter#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chai": "^4.2.22",
"@types/dirty-chai": "^2.0.2",
"@types/i18next-fs-backend": "^1.1.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"conventional-github-releaser": "^3.1.5",
"conventional-recommended-bump": "^6.1.0",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"deep-copy-all": "^1.3.4",
"deepmerge": "^4.2.2",
"del": "^6.0.0",
"dirty-chai": "^2.0.1",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-plugin-i18next": "^5.1.2",
"eslint-plugin-node": "^11.1.0",
"esm": "^3.2.25",
"execa": "^6.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"i18next-parser": "^5.3.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rollup": "^2.60.0",
"rollup-plugin-esformatter": "^2.0.1",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.20",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"i18next": "^21.5.3",
"i18next-fs-backend": "^1.1.4"
}
}