forked from angus-c/just
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 818 Bytes
/
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
{
"name": "just",
"version": "1.22.4",
"description": "A library of simple dependency-free utilities that do just do one thing",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"eslint": "6.8.0",
"lerna": "3.20.2",
"tap-spec": "5.0.0",
"tape": "^4.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && tape ./test/**/index.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angus-c/just.git"
},
"keywords": [
"node",
"array",
"object",
"function"
],
"author": "Angus Croll",
"license": "MIT",
"bugs": {
"url": "https://github.com/angus-c/just/issues"
},
"homepage": "https://github.com/angus-c/just#readme",
"dependencies": {
"test": "^0.6.0"
}
}