forked from zellwk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 966 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 966 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
34
35
36
37
38
39
40
{
"name": "@zellwk/javascript",
"version": "1.0.2",
"description": "Collection JavaScript stuff I use.",
"main": "index.js",
"keywords": [
"javascript",
"node",
"snippets"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"release": "np --no-publish && npm publish"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zellwk/useful-js-snippets.git"
},
"author": "Zell Liew <zellwk@gmail.com> (https://zellwk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zellwk/useful-js-snippets/issues"
},
"homepage": "https://github.com/zellwk/useful-js-snippets#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@types/jest": "^26.0.4",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"np": "^6.4.0"
}
}