-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "subjecto",
"version": "0.0.53",
"description": "A minimalistic state management library",
"types": "dist/types/index.d.ts",
"scripts": {
"prepare": "if [ -d 'dist' ]; then rm -rf dist && npm run build; fi",
"watch": "tsc --watch",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"test": "jest",
"dev": "node --experimental-specifier-resolution=node dist/cjs/workspace"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "(/src/__tests__/.*|(\\.|/)(test|spec))\\.[jt]sx?$",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/subject.ts"
]
},
"repository": {
"type": "git",
"url": "github.com/paulbrie/subjecto"
},
"keywords": [
"state",
"management",
"subscribe",
"data",
"store"
],
"author": "Paul Brie",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}