-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "declarative-iterate",
"version": "0.1.0",
"description": "declarative way to iterate over anything",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"repository": {
"type": "git",
"url": ""
},
"export": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"test": "jest .",
"test-watch": "npm run test -- --watch",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:types": "tsc -p ./tsconfig.types.json",
"build": "npm-run-all -p build:*",
"build-watch:cjs": "npm run build:cjs -- --watch",
"build-watch:esm": "npm run build:esm -- --watch",
"build-watch:types": "npm run build:types -- --watch",
"build-watch": "npm-run-all -p build-watch:*",
"clear": "del-cli ./dist",
"prepublishOnly": "npm-run-all -s test clear build",
"lint": "eslint -c ./.eslintrc.json",
"lint-fix": "npm run lint -- --fix"
},
"keywords": [
"declarative",
"iterate"
],
"author": {
"name": "ynoplanetashka",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"del-cli": "^5.0.0",
"eslint": "^8.26.0",
"jest": "^29.2.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"files": [
"dist/"
],
"dependencies": {
"symbol-observable": "^4.0.0"
}
}