-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
{
"name": "@gnodi/sorting",
"description": "JavaScript/Node.js package about sorting",
"version": "0.0.0",
"author": "Thomas Prelot <tprelot@gmail.com> (https://github.com/Gnucki)",
"contributors": [],
"keywords": [
"da",
"sorting"
],
"dependencies": {
"eslint-config-standard": "^6.2.0"
},
"devDependencies": {
"browserify": "^13.1.1",
"istanbul": "^0.4.0",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.2.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"mocha": "^3.0",
"watchify": "^3.7.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gnodi/sorting"
},
"main": "index",
"scripts": {
"test": "npm run test-server && npm run test-client",
"test-server": "NODE_ENV='test' istanbul cover jasmine test/**/*.js",
"test-client": "karma start karma.conf-ci",
"test-client-local": "karma start karma.conf",
"build": "node node_modules/da-building/index.js",
"build-bis": "node_modules/da-transpiling/node_modules/.bin/babel lib --out-file dist/sorting.js",
"gnodi": "gnodi",
"lint": "gnodi-lint"
},
"bin": {
"gnodi": "bin/gnodi.js"
},
"engines": {
"node": ">=6",
"npm": ">=3"
}
}