-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
{
"name": "mnemonica",
"version": "0.9.991",
"description": "abstract technique that aids information retention : instance inheritance system",
"type": "commonjs",
"main": "./build/index.js",
"exports": {
".": "./build/index.js",
"./module": {
"import": "./module/index.js",
"browser": "./module/index.js",
"require": "./build/index.js",
"default": "./build/index.js"
}
},
"files": [
"README.md",
"LICENSE",
"module",
"build"
],
"directories": {
"build": "build/",
"module": "module/"
},
"contributors": [
"laplandin <[email protected]>",
"petrgrishin <[email protected]>",
"Goodluckhf <[email protected]>"
],
"scripts": {
"build": "rm -rf ./build && npx tsc --pretty && npm run lint && npm run lint:src && npm run lint:test",
"example": "npm run build && node ./test/example.js",
"example:ts": "npx tsc ./test-ts/*.ts && npx eslint --fix ./test-ts/*.js && node ./test-ts/test-no-types.js && node ./test-ts/test-with-types.js",
"lint": "npx eslint --fix",
"lint:src": "npx eslint --fix ./src",
"lint:test": "npx eslint --fix ./test",
"test": "mocha --allow-uncaught test/index.js",
"test:cov": "npm run build && nyc --reporter=text-summary --reporter=lcov mocha --allow-uncaught --ui bdd --reporter spec ./test/index.js",
"test:debug": "npx tsc --pretty --sourceMap && npx mocha --allow-uncaught --reporter spec --inspect-brk test/index",
"test:jest": "npx jest",
"test:jest:cov": "npx jest --collectCoverage",
"test:jest:debug": "npx --node-arg=--inspect-brk jest",
"test:mjs": "npm run build && node --experimental-modules ./test/test.mjs",
"watch": "npx tsc --pretty -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wentout/mnemonica.git"
},
"keywords": [
"ETL",
"DFD",
"inheritance",
"mnemonica"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wentout/mnemonica/issues"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"homepage": "https://github.com/wentout/mnemonica#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.70",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-no-arrow-this": "^1.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"json5": "^2.2.3",
"lint-staged": "^15.3.0",
"mocha": "^10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=16 <24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}