-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1004 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1004 Bytes
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
{
"name": "tjson-js",
"version": "0.1.2",
"description": "Tagged JSON (TJSON): a JSON-based microformat with rich type annotations",
"author": "Tony Arcieri <bascule@gmail.com>",
"license": "MIT",
"main": "release/tjson.js",
"types": "src/tjson.ts",
"repository": {
"type": "git",
"url": "https://github.com/tjson/tjson-js"
},
"keywords": [
"json",
"serialization",
"types"
],
"bugs": {
"url": "https://github.com/tjson/tjson-js/issues"
},
"scripts": {
"test": "mocha --require ts-node/register test/**/*.spec.ts"
},
"dependencies": {
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/mocha": "^5.2.7",
"@types/utf8": "*",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^5.0.1",
"mocha": "^7.0.0",
"mocha-typescript": "^1.0.23",
"toml": "^3.0.0",
"ts-node": "^9.1.1",
"typescript": "^3.6.2",
"web-request": "^1.0.7"
}
}