-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "open-sml",
"version": "1.0.4",
"description": "Smart Message Language Implementation",
"main": "index.js",
"scripts": {
"test": "grunt test",
"release": "release-script"
},
"repository": {
"type": "git",
"url": "https://github.com/dspautz/OpenSML.git"
},
"keywords": [
"SML",
"Smart Message Language"
],
"author": "David Spautz <[email protected]>",
"contributors": [
{
"name": "David Spautz",
"email": "[email protected]"
},
{
"name": "Apollon77",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dspautz/OpenSML/issues"
},
"homepage": "https://github.com/dspautz/OpenSML",
"dependencies": {
"int64-buffer": "^1.0.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"chai": "^4.3.10",
"chai-change": "^2.1.2",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"grunt": "^1.6.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "~5.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^10.2.0",
"istanbul": "^0.4.5",
"grunt-mocha-istanbul": "^5.0.2"
}
}