-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "@housinganywhere/safe-redux",
"version": "1.2.1",
"description": "Create and handle safely typed actions",
"main": "./dist/cmjs/index.js",
"module": "./dist/cmjs/index.js",
"es2015": "./dist/es2015/index.js",
"unpkg": "./dist/umd/index.js",
"typings": "./typings/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://www.github.com/housinganywhere/safe-redux"
},
"author": "Christian Gill <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:umd && yarn build:cmjs && yarn build:es2015 ",
"build:es2015": "tsc --module es2015 --outDir dist/es2015",
"build:umd": "tsc --module umd --outDir dist/umd",
"build:cmjs": "tsc --module commonjs --outDir dist/cmjs",
"test": "jest --coverage",
"test:watch": "jest --watch",
"verify": "npm run validate-js && npm run style && npm run test:ci",
"format": "prettier --write '**/*.{ts,json,md}'",
"format:changed": "pretty-quick",
"precommit": "pretty-quick --staged",
"prerelease": "yarn build",
"release": "np"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"husky": "^3.0.5",
"jest": "^24.9.0",
"np": "^5.0.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}