-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (72 loc) · 2.69 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
{
"name": "seneca-mem-store",
"version": "9.4.0",
"description": "Seneca in-memory data storage plugin.",
"main": "dist/mem-store.js",
"type": "commonjs",
"types": "dist/mem-store.d.ts",
"license": "MIT",
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)",
"Nicolas Herment (https://github.com/nherment)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Maxence Dalmais (https://github.com/maxired)",
"Mihai Dima (https://github.com/mihaidma)",
"Wyatt Preul (https://github.com/geek)",
"Paolo Chiodi (https://github.com/paolochiodi)",
"Shane Lacey (https://github.com/shanel262)",
"Oisín Hennessy (https://github.com/code-jace)",
"Efim Bogdanovsky (https://github.com/lilsweetcaligula)"
],
"scripts": {
"build": "tsc -d",
"watch": "tsc -w -d",
"test": "node --enable-source-maps --test",
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test test",
"test-lab": "lab -v -P test -L -t 90 -r console -o stdout -r html -o test/coverage.html -r lcov -o test/lcov.info --sourcemaps --transform node_modules/lab-transform-typescript",
"test-lab-some": "lab -v -P test --sourcemaps --transform node_modules/lab-transform-typescript -g",
"prettier": "prettier --write --no-semi --single-quote src/**/*.ts test/*.js",
"reset": "npm run clean && npm i && npm run build && npm test",
"clean": "rm -rf node_modules dist package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-mem-store"
},
"keywords": [
"seneca",
"plugin",
"store",
"mem",
"memory"
],
"peerDependencies": {
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=27"
},
"devDependencies": {
"@hapi/code": "9.0.3",
"@hapi/lab": "25.2.0",
"async": "3.2.5",
"lab-transform-typescript": "3.0.1",
"prettier": "3.3.2",
"seneca-plugin-validator": "0.6.1",
"seneca-promisify": "3.7.2",
"seneca-store-test": "6.0.0",
"typescript": "5.5.3"
},
"files": [
"README.md",
"CHANGES.md",
"LICENSE",
"src",
"dist"
],
"dependencies": {
"gubu": "^8.2.1"
}
}