UNPKG

832 BJSONView Raw
1{
2 "name": "@curi/helpers",
3 "version": "1.0.0",
4 "description": "Functions that can be useful in Curi apps",
5 "main": "dist/curi-helpers.js",
6 "module": "dist/curi-helpers.es.js",
7 "types": "types/index.d.ts",
8 "files": [
9 "dist",
10 "types",
11 "LICENSE",
12 "*.md"
13 ],
14 "sideEffects": false,
15 "scripts": {
16 "build": "node ./scripts/build",
17 "coverage": "jest --coverage",
18 "prepare": "npm run build",
19 "prepublishOnly": "npm test",
20 "test": "jest && TEST_ENV=cjs jest && TEST_ENV=umd jest"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/pshrmn/curi/tree/master/packages/helpers"
25 },
26 "keywords": [
27 "Curi"
28 ],
29 "author": "Paul Sherman",
30 "license": "MIT",
31 "devDependencies": {
32 "@types/jest": "^22.0.1",
33 "jest": "^23.6.0",
34 "ts-jest": "^23.10.4"
35 }
36}