forked from stoplightio/ordered-object-literal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
48
49
50
51
52
53
{
"name": "@stoplight/ordered-object-literal",
"version": "0.0.0",
"description": "Object literal maintaining its properties in the order they were added",
"keywords": [
"object",
"object-literal",
"iteration"
],
"homepage": "https://github.com/stoplightio/ordered-object-literal",
"bugs": {
"url": "https://github.com/stoplightio/ordered-object-literal/issues"
},
"engines": {
"node": ">=8"
},
"files": [
"src"
],
"typings": "./src/index.d.ts",
"main": "./src/index.cjs",
"module": "./src/index.mjs",
"exports": {
"types": "./src/index.d.ts",
"import": "./src/index.mjs",
"require": "./src/index.cjs"
},
"license": "Apache-2.0",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/ordered-object-literal"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"lint": "eslint --cache --cache-location .cache/ src/**/*.mjs",
"test": "NODE_ENV=test c8 mocha --experimental-modules --config .mocharc ./src/__tests__/*.mjs",
"prepublish": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"c8": "^7.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"mocha": "^10.2.0",
"prettier": "^2.0.4",
"rollup": "^2.4.0"
}
}