-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
{
"name": "@zokugun/lang",
"description": "Provide basics methods for Array, Function, Number, Object and String",
"version": "0.4.0",
"author": {
"name": "Baptiste Augrain",
"email": "[email protected]"
},
"homepage": "https://github.com/zokugunks/lang",
"repository": {
"type": "git",
"url": "https://github.com/zokugunks/lang"
},
"bugs": {
"url": "https://github.com/zokugunks/lang/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"files": [
"index.ks",
"src/**/*.ks"
],
"dependencies": {},
"devDependencies": {
"@kaoscript/coverage-istanbul": "github:kaoscript/coverage-istanbul",
"@kaoscript/target-commons": "^0.2.0",
"@kaoscript/webpack-loader": "^0.3.0",
"@mocha/karma-sauce-launcher": "^2.1.0",
"@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.9",
"istanbul": "^0.4.5",
"kaoscript": "github:kaoscript/kaoscript",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"webpack": "^4.41.5",
"webpack-cli": "3.2.3"
},
"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 --exit --colors --require kaoscript/register --reporter spec test/*.ks",
"test-karma-es5-ci": "karma start karma.conf-es5-ci.js",
"test-karma-es6-ci": "karma start karma.conf-es6-ci.js",
"test-karma-trident-ci": "karma start karma.conf-trident-ci.js"
},
"keywords": [
"kaoscript",
"array",
"function",
"number",
"object",
"string"
]
}