-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.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
{
"name": "@nyinyithann/vec.js",
"version": "1.0.1",
"description": "Vec.js extends Javascript Array.",
"main": "build/cjs/vec.js",
"module": "build/esm/vec.js",
"license": "MIT",
"keywords": [
"array",
"vector",
"array extensions",
"ES6",
"ES2015",
"functioanl programming"
],
"author": "Nyi Nyi Than <nyinyithann@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/nyinyithann/vec.js.git"
},
"bugs": {
"url": "https://github.com/nyinyithann/vec.js/issues"
},
"homepage": "https://github.com/nyinyithann/vec.js#readme",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-jest": "^27.4.6",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"jest-cli": "^27.4.6",
"jsdoc": "^3.6.7",
"jsdoc-to-markdown": "^7.1.0",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"lint": "eslint src src/**",
"test": "jest --config jest.config.js",
"vec-doc": "jsdoc2md --partial docs.hbs body.hbs main-index.hbs --files src/vec/*.js > api.docs/vec.api.md",
"prepare": "rollup --config",
"build": "npm run lint & npm run test & npm run vec-doc & npm run prepare",
"iv": "npm --no-git-tag-version version patch",
"verdaccio-publish": "npm run iv & npm publish --registry http://localhost:4873",
"verdaccio-unpublish": "npm unpublish --force --registry http://localhost:4873/ @jazz/vec.js"
},
"directories": {
"test": "tests"
}
}