-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 KB
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
{
"name": "quickiter",
"version": "0.8.0",
"description": "Fast iterator library",
"main": "dist/index.js",
"module": "lib/index.js",
"browser": "dist/index.js",
"scripts": {
"test": "jest",
"dist": "babel lib/ --out-dir dist/",
"preversion": "yarn test",
"prepublish": "yarn dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxbunny/quickiter.git"
},
"keywords": [
"ierator",
"iterable",
"utilities"
],
"author": "Hajime Yamasaki Vukelic <hayavuk@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/foxbunny/quickiter/issues"
},
"homepage": "https://github.com/foxbunny/quickiter#readme",
"standard": {
"global": [
"describe",
"expect",
"test",
"jest",
"afterEach",
"afterAll",
"beforeEach",
"beforeAll"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-umd"
]
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-transform-modules-umd": "^7.13.0",
"jest": "^26.1.0",
"rollup": "^2.18.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"standard": "^14.3.4"
}
}