-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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": "anticipated-call",
"version": "0.0.0-development",
"description": "Get a Promise that resolves when your function is called.",
"repository": "https://github.com/ryaninvents/anticipated-call.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "babel src --ignore test.js -d lib && cp src/index.d.ts lib/index.d.ts",
"test:ci": "babel src -d lib-test && jest lib-test",
"test": "jest",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"lib"
],
"author": "Ryan Kennedy <[email protected]>",
"license": "MIT",
"release": {
"branch": "develop",
"analyzeCommits": {
"preset": "eslint",
"releaseRules": [
{
"tag": "Docs",
"message": "/README/",
"release": "patch"
}
]
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"conventional-changelog-eslint": "^0.2.0",
"eslint": "^4.8.0",
"eslint-config-react-app": "^2.0.1",
"jest": "^21.2.1",
"semantic-release": "^8.0.3"
}
}