-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "almost-functional",
"version": "0.4.1",
"description": "A small functional library",
"homepage": "https://github.com/AndrewMusgrave/almost-functional",
"repository": "https://github.com/AndrewMusgrave/almost-functional",
"author": {
"name": "Andrew Musgrave",
"email": "andrewdmusgrave@gmail.com",
"url": "https://github.com/AndrewMusgrave"
},
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib/types/*.{js,d.ts} lib/*.{js,d.ts}",
"prebuild": "yarn run clean",
"build": "tsc --emitDeclarationOnly && rollup -c",
"lint": "eslint ./src/**/*.ts --max-warnings 0 --format codeframe",
"format": "yarn run lint --fix",
"ts": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage --no-cache",
"check": "npm-run-all lint ts test",
"prepublish": "in-publish && yarn run build || :"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.5",
"eslint": "^5.3.0",
"eslint-plugin-shopify": "^23.1.0",
"gen-doc-cli": "^0.2.0",
"in-publish": "^2.0.0",
"jest": "^23.4.0",
"npm-run-all": "^4.0.2",
"prettier": "^1.14.0",
"rimraf": "^2.6.1",
"rollup": "^0.64.1",
"rollup-plugin-typescript2": "^0.16.1",
"ts-jest": "^23.0.0",
"typescript": "^2.5.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(\\.|/)(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"index.*",
"types.*"
]
}
}