This repository was archived by the owner on Sep 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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": "@composi/create-refs",
"description": "Function to create-refs objects together. Can take one to many object. If only one object is used, it is cloned. create-refs does deep cloning of objects.",
"version": "1.0.1",
"main": "src/index.js",
"scripts": {
"checkjs": "tsc --allowJs --checkJs --noEmit --moduleResolution node --target ES6 src/*.js",
"format": "prettier --no-semi --single-quote --write ./src/*.js",
"lint": "eslint --config ./.eslintrc.json src",
"start": "npm run format && npm run lint && npm run checkjs && npm run test",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/composi/create-refs.git"
},
"keywords": [
"composi",
"frontend",
"types",
"type check"
],
"author": "Robert Biggs",
"license": "MIT",
"bugs": {
"url": "https://github.com/composi/create-refs/issues"
},
"homepage": "https://github.com/composi/create-refs#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
}
}