-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.32 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
51
52
{
"name": "murry",
"version": "1.1.2",
"description": "Separate controller and router with curried marshalling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:dev": "npm run build -- -s",
"build": "rimraf dist && tsc --declaration --outDir dist",
"bump": "npx standard-version",
"prepare": "npm run build",
"standard": "node ./node_modules/standard/bin/cmd.js \"**/*.js\"",
"test": "npm run standard && nyc ts-mocha test/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Tyler Hall",
"license": "MIT",
"dependencies": {
"ramda": "^0.27.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/ramda": "^0.27.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"husky": "^3.0.2",
"mocha": "^7.1.2",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"standard": "^14.3.2",
"standard-version": "^8.0.0",
"ts-mocha": "^7.0.0",
"tslint": "^5.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.5.2"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"/docs/**"
]
}
}