-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
67
68
69
{
"name": "@articulate/funky",
"version": "2.1.0",
"description": "Functional helper library",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"browser": "./index.js",
"types": "./index.d.ts"
},
"./lib/*": {
"require": "./lib/*.js",
"browser": "./lib/*.js",
"types": "./types/*.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/articulate/funky"
},
"author": "articulate",
"license": "MIT",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"scripts": {
"build": "buble -i src -o lib",
"clean": "rm -rf lib && mkdir -p lib",
"lint": "eslint src test",
"prebuild": "yarn run clean",
"prepublish": "yarn run build",
"pretest": "yarn run build",
"preversion": "git checkout master && yarn run build",
"test": "mocha test --reporter=dot && yarn run test:tsd",
"test:ci": "yarn run lint && yarn run test:coverage && yarn run coverage && yarn run test:tsd",
"test:coverage": "nyc yarn run test",
"test:tsd": "tsd"
},
"dependencies": {
"ramda": "0.27.2",
"ts-toolbelt": "^9.6.0",
"type-fest": "^4.9.0"
},
"devDependencies": {
"@articulate/spy": "^0.0.1",
"@types/hapi__joi": "^17.1.14",
"@types/ramda": "~0.27.0",
"buble": "^0.15.2",
"chai": "^4.1.1",
"eslint": "^4.3.0",
"joi": "^10.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"prop-factory": "^1.0.0",
"proxyquire": "^2.0.1",
"ts-arithmetic": "^0.1.1",
"tsd": "^0.29.0"
},
"peerDependencies": {
"@types/hapi__joi": ">=10",
"joi": ">=10"
}
}