-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "iterize",
"version": "1.5.0",
"description": "Use JavaScript Iterator, Easily",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hg-pyun/iterize.git"
},
"author": "Haegul Pyun",
"license": "MIT",
"bugs": {
"url": "https://github.com/hg-pyun/iterize/issues"
},
"homepage": "https://github.com/hg-pyun/iterize#readme",
"keywords": [
"library",
"iterator",
"generator",
"es6",
"helper",
"iterable",
"iterable protocol",
"lazy evaluation",
"reuse",
"effective",
"productive",
"tool",
"functional",
"higher-order-function"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.3.3333",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/runtime": "^7.2.0"
},
"scripts": {
"deploy": "npm test && npm run build && npm publish",
"build": "npm run build:types && npm run build:lib && npm run build:umd",
"build:types": "tsc --emitDeclarationOnly",
"build:lib": "cross-env BABEL_ENV=production babel src --out-dir lib --extensions '.ts'",
"build:umd": "cross-env BABEL_ENV=production webpack",
"test": "mocha --recursive ./test/*.ts --require ts-node/register",
"test:watch": "mocha --recursive --watch-extensions ts --watch ./test/*.ts --require ts-node/register"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}