-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.67 KB
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
{
"name": "@w11k/rx-ninja",
"version": "6.0.0",
"license": "Apache-2.0",
"author": "W11K GmbH",
"contributors": [
{
"name": "Philipp Burgmer"
},
{
"name": "Sascha Engmann",
"email": "engmann@w11k.de"
}
],
"homepage": "https://github.com/w11k/rx-ninja",
"typings": "dist/bundle/index.d.ts",
"main": "./dist/bundle/index.js",
"module": "./dist/esm5/index.js",
"esm5": "./dist/esm5/index.js",
"esm2015": "./dist/esm2015/index.js",
"repository": "https://github.com/w11k/rx-ninja",
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@swirly/parser": "^0.21.0",
"@swirly/renderer-node": "^0.21.0",
"@swirly/types": "^0.21.0",
"@types/chai": "^4.2.7",
"@types/lodash": "^4.14.166",
"@types/mocha": "^10.0.10",
"@types/sinon": "^21.0.1",
"@types/sinon-chai": "^3.2.4",
"@types/svgo": "^1.3.3",
"chai": "^4.2.0",
"color": "^3.1.2",
"del-cli": "^7.0.0",
"eslint": "^9.0.0",
"gh-pages": "^2.1.1",
"gm": "^1.23.1",
"lodash": "^4.17.21",
"mocha": "^11.7.6",
"np": "^11.2.1",
"npm-run-all": "^4.1.5",
"rxjs": "^7.8.2",
"rxjs-marbles": "^7.0.1",
"shx": "^0.4.0",
"sinon": "^22.0.0",
"sinon-chai": "^3.5.0",
"svgo": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.0",
"version-bump-prompt": "^5.0.7"
},
"peerDependencies": {
"rxjs": ">=6.0.0",
"typescript": "^3 || ^4 || ^5 || ^6"
},
"scripts": {
"np": "np",
"clean": "del-cli dist",
"compile": "run-p compile:*",
"compile:base": "tsc -p tsconfig.json",
"compile:esm5": "tsc -p tsconfig.dist.esm5.json",
"compile:esm2015": "tsc -p tsconfig.dist.esm2015.json",
"build": "run-s clean compile",
"prepublishOnly": "run-s test build doc",
"postpublish-doc": "npm run doc:deploy && git push",
"postpublish": "run-s postpublish-doc",
"test": "mocha src/**/*test.ts",
"lint": "eslint \"src/**/*.ts\"",
"doc": "run-s doc:marbles doc:typedoc doc:touchNoJekyll doc:git_add_doc doc:git_commit",
"doc:marbles": "shx mkdir -p ./tmp/swirly/svgs && ts-node --esm -P ./tools/marbles/tsconfig.marbles.json ./tools/marbles/scripts/index.mts",
"doc:typedoc": "typedoc --options ./typedoc.js",
"doc:touchNoJekyll": "shx touch doc/.nojekyll",
"doc:git_add_doc": "git add doc/**",
"doc:git_commit": "git commit -m \"generated documentation\"",
"doc:deploy": "gh-pages -t --dotfiles -d doc",
"bump": "bump --commit \"bump version to v\" --no-verify package.json package-lock.json"
},
"engines": {
"node": ">=18"
}
}