File size: 3,082 Bytes
f9f0fec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
	"name": "define-data-property",
	"version": "1.1.1",
	"description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.",
	"main": "index.js",
	"exports": {
		".": [
			{
				"types": "./index.d.ts",
				"default": "./index.js"
			},
			"./index.js"
		],
		"./package.json": "./package.json"
	},
	"sideEffects": false,
	"types": "./index.d.ts",
	"scripts": {
		"prepack": "npmignore --auto --commentLines=autogenerated && npm run emit-types",
		"prepublish": "not-in-publish || npm run prepublishOnly",
		"prepublishOnly": "safe-publish-latest",
		"tsc": "tsc -p .",
		"preemit-types": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map",
		"emit-types": "npm run tsc -- --noEmit false --emitDeclarationOnly",
		"postemit-types": "rm test/*.ts test/*.ts.map",
		"prelint": "evalmd README.md",
		"lint": "eslint --ext=js,mjs .",
		"postlint": "npm run tsc",
		"pretest": "npm run lint",
		"tests-only": "nyc tape 'test/**/*.js'",
		"test": "npm run tests-only",
		"posttest": "aud --production",
		"version": "auto-changelog && git add CHANGELOG.md",
		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/ljharb/define-data-property.git"
	},
	"keywords": [
		"define",
		"data",
		"property",
		"object",
		"accessor",
		"javascript",
		"ecmascript",
		"enumerable",
		"configurable",
		"writable"
	],
	"author": "Jordan Harband <ljharb@gmail.com>",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/ljharb/define-data-property/issues"
	},
	"homepage": "https://github.com/ljharb/define-data-property#readme",
	"dependencies": {
		"get-intrinsic": "^1.2.1",
		"gopd": "^1.0.1",
		"has-property-descriptors": "^1.0.0"
	},
	"devDependencies": {
		"@ljharb/eslint-config": "^21.1.0",
		"@types/es-value-fixtures": "^1.4.1",
		"@types/for-each": "^0.3.1",
		"@types/get-intrinsic": "^1.2.0",
		"@types/gopd": "^1.0.1",
		"@types/has": "^1.0.0",
		"@types/has-property-descriptors": "^1.0.1",
		"@types/object-inspect": "^1.8.2",
		"@types/object.getownpropertydescriptors": "^2.1.2",
		"@types/tape": "^5.6.1",
		"aud": "^2.0.3",
		"auto-changelog": "^2.4.0",
		"es-value-fixtures": "^1.4.2",
		"eslint": "=8.8.0",
		"evalmd": "^0.0.19",
		"for-each": "^0.3.3",
		"has": "^1.0.3",
		"in-publish": "^2.0.1",
		"npmignore": "^0.3.0",
		"nyc": "^10.3.2",
		"object-inspect": "^1.12.3",
		"object.getownpropertydescriptors": "^2.1.7",
		"reflect.ownkeys": "^1.1.4",
		"safe-publish-latest": "^2.0.0",
		"tape": "^5.7.1",
		"typescript": "^5.3.0-dev.20231012"
	},
	"engines": {
		"node": ">= 0.4"
	},
	"testling": {
		"files": "test/index.js"
	},
	"auto-changelog": {
		"output": "CHANGELOG.md",
		"template": "keepachangelog",
		"unreleased": false,
		"commitLimit": false,
		"backfillLimit": false,
		"hideCredit": true
	},
	"publishConfig": {
		"ignore": [
			".github/workflows",
			"!*.ts",
			"!*.ts.map",
			"types/reflect.ownkeys"
		]
	}
}