-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "seq-js",
"version": "0.0.2",
"main": "build/umd/seq.js",
"module": "build/esm/seq.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nyinyithann/SeqJS.git"
},
"keywords": [
"iterable",
"iterator",
"generator",
"enumerable",
"enumerator",
"sequence",
"generator",
"ES6"
],
"author": "Nyi Nyi Than <[email protected]>",
"bugs": {
"url": "https://github.com/nyinyithann/SeqJS/issues"
},
"homepage": "https://github.com/nyinyithann/SeqJS",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"lint": "eslint src/*.js",
"test": "jest --config jest.config.js",
"test-more": "jest --config jest.config.js ./tests/more",
"test-specs": "jest --config jest.config.js ./tests/specs",
"doc": "jsdoc2md --partial docs.hbs body.hbs main-index.hbs --files src/*.js > api.md",
"prepare": "rollup --config",
"build": "npm run lint & npm run test & npm run doc & npm run prepare",
"iv": "npm --no-git-tag-version version patch",
"lp": "npm run iv & npm publish --registry http://localhost:4873",
"lup": "npm unpublish --force --registry http://localhost:4873/ seq-js"
},
"files": [
"build/esm/*",
"build/umd/*"
],
"dependencies": {
"eslint-config-airbnb": "^18.2.1"
}
}