-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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": "jkt",
"version": "2.3.8",
"description": "Simple and efficient library for JSON data structure",
"main": "./src/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --require vars.js --timeout 15000 --recursive --slow 1 test/",
"test:watch": "NODE_ENV=test mocha --watch --require vars.js --timeout 15000 --recursive --slow 1 test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slaveofcode/jkt.git"
},
"keywords": [
"json",
"structure",
"json",
"library",
"json",
"data",
"structure",
"parser",
"serializer"
],
"author": "Aditya Kresna Permana",
"license": "MIT",
"bugs": {
"url": "https://github.com/slaveofcode/jkt/issues"
},
"homepage": "https://github.com/slaveofcode/jkt#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-things": "^0.2.0",
"mocha": "^7.1.1"
},
"dependencies": {
"lodash": "^4.17.20",
"moment": "^2.24.0",
"shortid": "^2.2.14"
}
}