-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
47
48
49
50
{
"name": "@sihlfall/represelect-assert",
"version": "0.1.4",
"description": "Reselect-like lazy selectors for asynchronous pure functions",
"main": "./lib/index.js",
"jsnext:main": "./es/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"unpkg": "./dist/represelect-assert.js",
"files": [
"lib",
"src",
"dist",
"es"
],
"sideEffects": false,
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --extensions .ts --out-dir lib",
"build:es": "babel src/*.ts --ignore src/types.ts --extensions .ts --out-dir es",
"build:types": "tsc",
"build": "rimraf dist lib es && npm run build:types && npm run build:commonjs && npm run build:es",
"clean": "rimraf lib dist es coverage"
},
"keywords": [
"represelect",
"assert"
],
"author": "Johannes Becker",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sihlfall/represelect-assert.git"
},
"dependencies": {
"assert": "^2.0.0",
"represelect": "^0.1.3"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-transform-typescript": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@babel/register": "^7.21.0",
"@types/assert": "^1.5.6",
"cross-env": "^7.0.3",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}