-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "tinyiter",
"version": "1.0.5",
"description": "An easy way to iterate and manipulate with javascript objects and arrays",
"scripts": {
"test": "mocha --compilers babel-register --require babel-polyfill",
"build": "npx webpack"
},
"keywords": ["object", "array", "map", "filter", "forEach", "iterate"],
"repository": {
"type": "git",
"url": "https://github.com/saskaale/tinyiter"
},
"bugs": {
"url": "https://github.com/saskaale/tinyiter/issues"
},
"main": "lib/index.js",
"author": "Ales Saska",
"license": "ISC",
"devDependencies": {
"assert": "^1.4.1",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "7",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"google-closure-compiler": "^20180805.0.0",
"mocha": "^5.2.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"babel": {
"presets": [
"latest"
],
"plugins": [
"transform-object-rest-spread",
"transform-decorators"
]
},
"dependencies": {}
}