-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 787 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
32
33
{
"name": "raj",
"description": "The Elm Architecture for JavaScript",
"version": "1.0.0",
"author": "Chris Andrejewski <christopher.andrejewski@gmail.com>",
"bugs": {
"url": "https://github.com/andrejewski/raj/issues"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"fixpack": "^2.3.1",
"prettier": "^1.13.5",
"standard": "^11.0.0"
},
"homepage": "https://jew.ski/raj/",
"keywords": [
"architecture",
"elm",
"framework",
"runtime"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/andrejewski/raj.git"
},
"scripts": {
"lint": "fixpack && prettier index.js test/**/*.js --write && standard --fix",
"test": "npm run lint && ava"
}
}