-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.07 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
48
49
50
51
52
53
54
{
"name": "clpl",
"version": "0.1.0",
"description": "Chamaelyn Key-Value Pair Language",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"test": "mocha",
"bench": "node benchmark",
"build": "tsc && npm run gen-esm",
"gen-esm": "gen-esm-wrapper . ./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azusfin/clpl.git"
},
"keywords": [
"key",
"value",
"pair",
"language",
"key-value",
"chamaelyn",
"json",
"key-value-pair",
"yaml",
"yml"
],
"author": "Azusfin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azusfin/clpl/issues"
},
"homepage": "https://github.com/Azusfin/clpl#readme",
"devDependencies": {
"@types/node": "^17.0.2",
"benny": "^3.7.1",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^9.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"graphemesplit": "^2.4.4"
}
}