-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 967 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 967 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
41
42
43
{
"name": "@ridomin/repo-scripts",
"version": "0.0.14",
"description": "",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "standard && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotmodels/repo-scripts/.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iotmodels/repo-scripts/issues"
},
"homepage": "https://github.com/iotmodels/repo-scripts/#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.4.2",
"standard": "^14.3.4"
},
"dependencies": {
"jsonata": "^1.8.3",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1"
},
"standard": {
"globals": [
"test",
"expect"
],
"ignore": [
"out/*",
"*.d.ts"
]
}
}