Comparing version 4.2.5 to 4.3.0
{ | ||
"name": "satcheljs", | ||
"version": "4.2.5", | ||
"version": "4.3.0", | ||
"description": "Store implementation for functional reactive flux.", | ||
@@ -13,8 +13,9 @@ "lint-staged": { | ||
"precommit": "lint-staged", | ||
"clean": "rimraf build lib", | ||
"clean": "rimraf build lib lib-esm", | ||
"lint": "tslint -t stylish --project tsconfig.json", | ||
"build:source": "tsc -p tsconfig.release.json", | ||
"build:source:esm": "tsc -p tsconfig.release-esm.json", | ||
"watch": "tsc -w -p tsconfig.release.json", | ||
"test:unit": "jest", | ||
"build": "run-s clean build:source", | ||
"build": "run-s clean build:source build:source:esm", | ||
"start": "run-s clean watch", | ||
@@ -61,2 +62,3 @@ "test": "run-s lint build test:unit", | ||
"main": "lib/index.js", | ||
"module": "lib-esm/index.js", | ||
"typings": "lib/index.d.ts", | ||
@@ -66,3 +68,45 @@ "publishConfig": { | ||
}, | ||
"license": "MIT" | ||
"license": "MIT", | ||
"exports": { | ||
".": { | ||
"types": "./lib-esm/index.d.ts", | ||
"import": "./lib-esm/index.js", | ||
"default": "./lib/index.js" | ||
}, | ||
"./lib/legacy": { | ||
"types": "./lib-esm/legacy/index.d.ts", | ||
"import": "./lib-esm/legacy/index.js", | ||
"default": "./lib/legacy/index.js" | ||
}, | ||
"./lib/legacy/promise": { | ||
"types": "./lib-esm/legacy/promise/index.d.ts", | ||
"import": "./lib-esm/legacy/promise/index.js", | ||
"default": "./lib/legacy/promise/index.js" | ||
}, | ||
"./lib/legacy/react": { | ||
"types": "./lib-esm/legacy/react/index.d.ts", | ||
"import": "./lib-esm/legacy/react/index.js", | ||
"default": "./lib/legacy/react/index.js" | ||
}, | ||
"./lib/legacy/stitch": { | ||
"types": "./lib-esm/legacy/stitch/index.d.ts", | ||
"import": "./lib-esm/legacy/stitch/index.js", | ||
"default": "./lib/legacy/stitch/index.js" | ||
}, | ||
"./lib/legacy/trace": { | ||
"types": "./lib-esm/legacy/trace/index.d.ts", | ||
"import": "./lib-esm/legacy/trace/index.js", | ||
"default": "./lib/legacy/trace/index.js" | ||
}, | ||
"./lib/*.js": { | ||
"types": "./lib-esm/*.d.ts", | ||
"import": "./lib-esm/*.js", | ||
"default": "./lib/*.js" | ||
}, | ||
"./lib/*": { | ||
"types": "./lib-esm/*.d.ts", | ||
"import": "./lib-esm/*.js", | ||
"default": "./lib/*.js" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
96884
179
1970