-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
139 lines (139 loc) · 3.39 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "meeko",
"version": "1.8.334",
"description": "meeko自用函数",
"keywords": [
"statistics",
"js",
"tools",
"math",
"Machine Learning",
"AI",
"coverage"
],
"main": "index.js",
"types": "meeko.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"browser": {
"./index.js": "./index.browser.js"
},
"scripts": {
"patch": "git add . && git commit -m:pencil2: && npm version patch && npm publish .",
"cz": "conventional-changelog -p atom -i CHANGELOG.md -s -r 0 && git add . && git status && git cz",
"push": "npm version patch && npm publish . && git push",
"jsdoc": "jsdoc ./README.md --configure ./jsdoc.config.js",
"testlocal": "standard *.js && istanbul cover ./node_modules/mocha/bin/_mocha -- -r co-mocha --reporter spec --timeout 100000 --recursive tests/",
"test_new": "nyc mocha --timeout 100000 --recursive tests/",
"test": "mocha --recursive tests/",
"cjs2mjs": "rollup -c rollup.config.js",
"test2": "istanbul cover ./node_modules/mocha/bin/_mocha -- -r co-mocha --reporter mochawesome --timeout 100000 --recursive tests/",
"codecov": "nyc mocha --recursive tests/ && cat ./coverage/lcov.info | codecov",
"cov": "nyc --reporter html --reporter text npm test",
"coveralls": "nyc --reporter=lcov mocha --timeout 100000 --recursive tests/ && cat ./coverage/lcov.info",
"gents": "dts-gen -m meeko -o"
},
"repository": {
"type": "git",
"url": "git://github.com/kongnet/meeko.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">= 14.0.0"
},
"author": "Kongnet <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"cc-jt": "^0.1.26",
"chai": "^4.3.6",
"codecov": "*",
"conventional-changelog-cli": "^2.0.23",
"coveralls": "*",
"cz-jt": "^0.1.11",
"docdash": "^1.2.0",
"eslint": "^8.15.0",
"istanbul": "*",
"jsdoc": "^4.0.2",
"mocha": "*",
"mockjs": "^1.0.0",
"nyc": "*",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
},
"standard": {
"globals": [
"$",
"describe",
"it",
"define",
"db",
"performance"
],
"ignore": [
"/lib/tpl.js",
"/lib/Snowflake.js"
]
},
"eslintConfig": {
"plugins": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"globals": {
"angular": true,
"$": true
},
"rules": {
"no-unused-vars": 1,
"camelcase": 0,
"curly": 2,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"quotes": [
1,
"single"
],
"semi": 0,
"no-extra-semi": 1,
"space-infix-ops": 1,
"no-console": 0,
"complexity": [
1,
10
]
},
"extends": "eslint:recommended"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-jt"
}
}
}