-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "struct.js",
"description": "Structure, Struct, or 'struct.js' is designed to help define, from design; structured data.",
"version": "0.0.1",
"main": "lib/index.js",
"scripts": {
"build": "npx babel src --out-file lib/index.js --ignore '**/*.test.js','**/*Tests.js' --experimental --source-maps-inline",
"lint": "eslint src/",
"publish": "npx babel src --out-file lib/index.js --ignore '**/*.test.js','**/*Tests.js' --experimental --source-maps-inline",
"test": "cross-env NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmblack/struct.js.git"
},
"keywords": [
"struct",
"data",
"jsonschema",
"json",
"structure"
],
"author": "Dustyn Blackmore",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmblack/struct.js/issues"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"jest": "^29.7.0",
"jsonschema": "^1.4.1"
},
"homepage": "https://github.com/dmblack/struct.js#readme",
"dependencies": {
"babel-jest": "^29.7.0"
}
}