-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@zokugun/lang.color.alvy",
"description": "Add hsv/hsb, hsl, hwb and hsi spaces to Color class",
"version": "0.3.0",
"since": "2014-05-15",
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"homepage": "https://github.com/zokugunks/lang.color.alvy",
"repository": {
"type": "git",
"url": "https://github.com/zokugunks/lang.color.alvy"
},
"bugs": {
"url": "https://github.com/zokugunks/lang.color.alvy/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"files": [
"src/**/*.ks"
],
"main": "src/index.ks",
"dependencies": {
"@zokugun/lang": "^0.4.0",
"@zokugun/lang.color": "^0.3.0"
},
"devDependencies": {
"@kaoscript/coverage-istanbul": "^0.2.1",
"@kaoscript/runtime": "^0.6.1",
"@zokugun/istanbul.cover": "^0.5.0",
"@zokugun/istanbul.cover.cmd.mocha": "^0.4.0",
"@zokugun/istanbul.reporter.minimap": "^0.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"kaoscript": "^0.9.1",
"mocha": "^5.2.0"
},
"peerDependencies": {
"kaoscript": "^0.9.0"
},
"scripts": {
"push-coverage": "npm run test-coverage && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"test": "npm run test-mocha",
"test-coverage": "node node_modules/@zokugun/istanbul.cover/src/cli.js",
"test-mocha": "mocha --colors --check-leaks --require kaoscript/register --reporter spec test/*.ks"
},
"keywords": [
"kaoscript",
"zokugun",
"color",
"hsv",
"hsb",
"hsl",
"hwb",
"hsi"
]
}