-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "linki",
"type": "module",
"version": "0.1.27",
"description": "A simple library that provides utilities to compose your application from function-based components.",
"keywords": [
"componenets",
"callback",
"dataflow"
],
"author": "Marek Pazik <contact@marekpazik.pl>",
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/mpazik/linki.git"
},
"bugs": {
"url": "https://github.com/mpazik/linki/issues"
},
"homepage": "https://github.com/mpazik/linki#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/cjs/index.js"
}
},
"files": [
"/dist"
],
"scripts": {
"build": "tdl-build",
"prepack": "yarn build",
"lint": "tdl-lint",
"test": "tdl-test"
},
"devDependencies": {
"typescript-dev-loop": "^0.1.1"
},
"eslintConfig": {
"root": true,
"extends": "./node_modules/typescript-dev-loop/config/eslint.json"
}
}