-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 808 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 808 Bytes
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
{
"name": "affection",
"description": "Declarative side-effects",
"version": "0.0.1",
"author": "Chris Andrejewski <christopher.andrejewski@gmail.com> (http://chrisandrejewski.com)",
"bugs": {
"url": "https://github.com/andrejewski/affection/issues"
},
"devDependencies": {
"ava": "^0.25.0",
"fixpack": "^2.3.1",
"prettier": "^1.13.4",
"standard": "^12.0.1"
},
"homepage": "https://github.com/andrejewski/affection#readme",
"keywords": [
"declarative",
"effect",
"side"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/andrejewski/affection.git"
},
"scripts": {
"lint": "prettier {src,test}/**/*.js --write && fixpack && standard --fix",
"test": "npm run lint && ava"
}
}