forked from loiane/javascript-datastructures-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.7 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
{
"name": "javascript-datastructures-algorithms",
"version": "1.0.0",
"description": "Learning JavaScript Data Structures and Algorithms",
"repository": {
"type": "git",
"url": "git+https://github.com/loiane/javascript-datastructures-algorithms.git"
},
"keywords": [],
"author": "Loiane Groner",
"license": "MIT",
"bugs": {
"url": "https://github.com/loiane/javascript-datastructures-algorithms/issues"
},
"homepage": "https://github.com/loiane/javascript-datastructures-algorithms",
"scripts": {
"clean": "rm -rf ./dist; mkdir ./dist",
"lint": "node_modules/.bin/eslint src/index.js",
"lint-test": "node_modules/.bin/eslint test/index.js",
"build:js": "babel lib/js --presets babel-preset-es2015 --out-dir dist/js",
"build:ts": "tsc",
"build": "npm run build:js && npm run build:ts",
"test:js": "mocha --compilers js:babel-core/register --colors -R spec --recursive ./test/js",
"test:ts": "mocha -r ts-node/register --colors --recursive ./test/ts/**/*.spec.ts",
"test": "npm run test:js && npm run test:ts",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -R spec --recursive ./test/js -- --compilers js:babel-core/register",
"go": "npm run clean && npm run test && npm run build"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"eslint": "^4.6.1",
"istanbul": "^v1.1.0-alpha.1",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"typings": "^2.1.1"
}
}