-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "flux-standard-functions",
"version": "0.2.0",
"description": "Build simple, predictable reducers in Redux",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "npm run lint && rm -rf lib/*",
"build": "tsc",
"lint": "tslint -c tslint.json -e 'node_modules/**/*' '**/*.ts'",
"start": "node ./lib/index.js",
"test": "NODE_ENV=test nyc mocha --require source-map-support/register --require ts-node/register --recursive './src/**/*.tests.ts'",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepack": "npm run build"
},
"keywords": [],
"author": "skonves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/skonves/flux-standard-functions.git"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.12.1",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}