-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
{
"name": "scon",
"version": "3.0.0",
"description": "Read and write scon files",
"main": "index.js",
"scripts": {
"coverage-report": "nyc --reporter=lcov --reporter=text-summary mocha",
"lint": "eslint . --fix",
"test": "mocha",
"test:cov": "nyc --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 mocha",
"test:full": "npm run lint && npm run test:cov",
"prepublishOnly": "npm run test:full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norstone-tech/scon.git"
},
"keywords": [
"scon",
"file",
"format",
"binary",
"format",
"serialization",
"binary",
"object",
"notation",
"encoder",
"decoder",
"string",
"map"
],
"author": {
"name": "Aritz Beobide-Cardinal",
"email": "[email protected]"
},
"contributors": [
{
"name": "James R Swift",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/norstone-tech/scon/issues"
},
"homepage": "https://github.com/norstone-tech/scon#readme",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.8.0",
"eslint": "^8.1.0",
"eslint-config-norstone": "^1.0.0-beta.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"dependencies": {}
}