This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "iterama",
"version": "0.1.1",
"main": "index.js",
"module": "index",
"typings": "index.d.ts",
"license": "MIT",
"author": "psxcode <[email protected]> (https://github.com/psxcode)",
"homepage": "https://github.com/psxcode/iterama",
"scripts": {
"test": "NODE_ENV=test nyc mocha 'test/*.spec.ts'",
"build": "rimraf build && yarn build:js && yarn build:dts",
"copy": "cp ./{package.json,readme.md,LICENSE} ./build",
"build:dts": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:js": "NODE_ENV=production babel src --out-dir build --extensions '.ts,.js' --source-maps 'inline'"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@psxcode/compose": "^0.1.2",
"circularr": "^0.1.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@psxcode/wait": "^0.1.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"eslint": "^5.14.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-typescript": "^1.0.0-0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"test-fn": "^0.1.3",
"typescript": "^3.3.3"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"**/*.spec.ts"
],
"require": [
"./tshook.js"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false
}
}