-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
35 lines (35 loc) · 912 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
{
"name": "valence",
"description": "JavaScript Valence SDK",
"version": "1.0.3",
"author": "Desire2Learn Inc.",
"license": "Apache-2.0",
"keywords": [
"Desire2Learn",
"D2L",
"Valence"
],
"homepage": "http://docs.valence.desire2learn.com",
"repository": {
"type": "git",
"url": "git://github.com/Desire2Learn-Valence/valence-sdk-javascript.git"
},
"bugs": {
"url": "https://github.com/Desire2Learn-Valence/valence-sdk-javascript/issues"
},
"main": "lib/valence",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "./node_modules/.bin/istanbul test -x \"**/spec/**\" ./node_modules/.bin/_mocha -- -R spec spec",
"report-cov": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.18.2",
"istanbul": "^0.2.7",
"coveralls": "^2.10.0",
"sinon": "~1.9.1"
}
}