-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "strict-obj",
"version": "0.9.7",
"description": "A JavaScript object wrapper, that throws errors if you try to access not-defined properties.",
"main": "./dist/strict-object.js",
"files": [
"src",
"dist",
"jest"
],
"scripts": {
"doctoc": "doctoc README.md",
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"build:watch": "tsc --watch",
"changeset": "changeset",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottrippey/strict-obj.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottrippey/strict-obj/issues"
},
"homepage": "https://github.com/scottrippey/strict-obj#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/jest": "^26.0.24",
"babel-loader": "^8.2.2",
"doctoc": "^2.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}