-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1021 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
42
43
{
"name": "abitbol-serializable",
"version": "2.1.0",
"description": "Serializable classes based on Abitbol classes",
"main": "lib/index.js",
"types": "types/index.d.ts",
"typesVersions": {
"*": { "lib/*": ["types/lib/*"] }
},
"scripts": {
"test": "mocha",
"lint": "jshint lib/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wanadev/abitbol-serializable.git"
},
"keywords": [
"class",
"classy",
"abitbol",
"serializable"
],
"author": "Wanadev <http://www.wanadev.fr/>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wanadev/abitbol-serializable/issues"
},
"homepage": "https://github.com/wanadev/abitbol-serializable#readme",
"dependencies": {
"abitbol": "^2.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"enlightme": "^0.2.0",
"expect.js": "^0.3.1",
"jshint": "^2.13.6",
"mocha": "^11.0.1"
},
"enlightme": {
"appName": "Abitbol {Serializable}"
}
}