-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "missing-native-js-functions",
"version": "2.0.0",
"description": "mnJSf that should be the base library for every JS project",
"main": "dist/index.js",
"browser": "dist/mnjsf.min.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node example/",
"start": "yarn build && yarn test",
"build": "tsc -b .",
"rollup": "rollup -c",
"release": "yarn build && yarn rollup && changelogen --bump --output=CHANGELOG.md && git push --follow-tags && yarn publish",
"lint": "eslint --ext .js,.ts",
"docs": "TYPEDOC_WATCH=true docusaurus start",
"docs:build": "docusaurus build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trantlabs/missing-native-js-functions.git"
},
"keywords": [
"js",
"js-utils",
"js-extension",
"ecma",
"ecma-utils",
"ecma-extension",
"mnJSf",
"lodash",
"underscore"
],
"author": "Flam3rboy",
"contributors": [
"xNaCly",
"intevel"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/trantlabs/missing-native-js-functions/issues"
},
"homepage": "http://mnjsf.trantlabs.com/",
"devDependencies": {
"@docusaurus/core": "2.2.0",
"@docusaurus/module-type-aliases": "2.2.0",
"@docusaurus/preset-classic": "2.2.0",
"@mdx-js/react": "^1.6.22",
"@trantlabs/eslint-config-typescript": "^0.0.0",
"@types/node": "^14.14.14",
"changelogen": "^0.4.0",
"clsx": "^1.2.1",
"docusaurus-plugin-typedoc": "^0.18.0",
"eslint": "^8.30.0",
"patch-package": "^6.5.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.36.1",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.4.3"
}
}