-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "just",
"version": "1.22.4",
"description": "A library of simple dependency-free utilities that do just do one thing",
"main": "index.cjs",
"directories": {
"test": "test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "6.8.0",
"lerna": "3.20.2",
"rollup": "^2.58.0",
"tap-spec": "5.0.0",
"tape": "^4.0.0",
"template-mate": "^1.1.0",
"test": "^0.6.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "lerna run build --stream $@",
"lint": "eslint --max-warnings=0 --ext=mjs,js .",
"test": "npm run lint && tape ./test/**/index.cjs | tap-spec && npm run test-types",
"test-types": "tsc",
"generate-readmes": "node scripts/generate-readmes.js"
},
"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": {
"@changesets/cli": "^2.18.0"
}
}