-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1016 Bytes
/
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
{
"name": "iterium",
"version": "0.1.0",
"author": "Philip Ahlberg <philipahlberg@users.noreply.github.com>",
"description": "An iterator utility library",
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [],
"homepage": "https://github.com/philipahlberg/iterium#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/philipahlberg/iterium.git"
},
"bugs": {
"url": "https://github.com/philipahlberg/iterium/issues"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "windtunnel test tests/index.mjs"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^16.3.1",
"@windtunnel/assert": "^0.5.1",
"@windtunnel/cli": "^0.5.1",
"rollup": "^2.53.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {},
"optionalDependencies": {}
}