-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "immuton",
"version": "2.0.0",
"description": "Immuton is a collection of utility functions for working with immutable values, improving the change detection and memory footprint in your app",
"type": "module",
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js"
},
"prettier": "eslint-config-broilerplate/prettier.config",
"files": [
"lib",
"src",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.lib.json",
"lint": "tsc --noEmit && eslint . --ext .ts,.tsx && prettier --check .",
"lint:fix": "eslint . --ext .ts,.tsx --fix && prettier --write .",
"prepare": "npm run clean && npm test && npm run build",
"test": "npm run clean && mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktkiiski/immuton.git"
},
"keywords": [
"immutability",
"immutable"
],
"author": "Kimmo Kiiski",
"license": "ISC",
"bugs": {
"url": "https://github.com/ktkiiski/immuton/issues"
},
"homepage": "https://github.com/ktkiiski/immuton#readme",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.37",
"eslint": "^8.16.0",
"eslint-config-broilerplate": "^3.1.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}