-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.15 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.15 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
{
"name": "@sandstreamdev/std",
"version": "0.15.0",
"description": "Modern library of statically-typed modular functions for daily use in JavaScript and TypeScript projects.",
"type": "module",
"module": "index.js",
"main": "index.cjs.js",
"browser": "index.umd.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"addExtensions": "node --experimental-modules addExtensions.js",
"build": "npm run regenerate && npm run compile && npm run addExtensions && npm run rollup && npm run document && npm run indexReadme && npm run fix && npm run normalize",
"compile": "node --experimental-modules compile.js",
"deploy-docs": "npm run document && npm run docs:html && npm run fix && npm run normalize && gh-pages -d docs/dist",
"deploy-docs:ci": "npm run document && npm run docs:html && npm run fix && npm run normalize && gh-pages -d docs/dist -u \"github-actions-bot <support+actions@github.com>\"",
"docs:html": "node --experimental-modules --experimental-json-modules docs/docsHtml.js",
"docs:html:local": "node --experimental-modules --experimental-json-modules docs/docsHtml.js local=true",
"docs:html:local:watch": "nodemon --experimental-modules --experimental-json-modules docs/docsHtml.js local=true",
"document": "npm run fix && npm run normalize && node --experimental-modules document.js",
"fix": "npm run lint:fix && npm run prettier:fix && npm run lint:fix",
"indexReadme": "node --experimental-modules indexReadme.js",
"jest": "jest --coverage --watchAll=false",
"lint": "eslint \"**/*.{js,ts}\" --debug",
"lint:fix": "npm run lint -- --fix",
"normalize": "node --experimental-modules normalizeLineEndings.js",
"prepare": "npm run build",
"prettier": "prettier \"**/*.{js,json,md,ts}\"",
"prettier:check": "npm run prettier -- --check",
"prettier:fix": "npm run prettier -- --write",
"regenerate": "node --experimental-modules regenerate.js",
"reinstall": "rm -rf node_modules && rm -f package-lock.json && npm install && npm run build && npm run fix && npm run test",
"rollup": "rollup -c",
"test": "npm run jest && npm run prettier:check && npm run lint",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandstreamdev/std.git"
},
"keywords": [
"utilities",
"JavaScript",
"helpers",
"TypeScript",
"modules",
"fp",
"ES6",
"functional programming",
"ESM"
],
"author": {
"name": "Sandstream Development",
"url": "https://sandstream.pl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sandstreamdev/std/issues"
},
"homepage": "https://github.com/sandstreamdev/std",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"babel-jest": "^29.7.0",
"core-js": "^3.37.1",
"eslint": "^9.5.0",
"gh-pages": "^6.1.1",
"highlight.js": "^11.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"p-queue": "^8.0.1",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"typescript": "^5.5.2"
}
}