-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.22 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
{
"name": "batching-toposort",
"version": "1.2.0",
"description": "Efficiently sort interdependent tasks into a sequence of concurrently-executable batches.",
"keywords": [
"toposort",
"concurrency",
"algorithm",
"dag",
"digraph",
"directed acyclic graph",
"graph",
"sort"
],
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "mkdir -p dist && babel src --out-dir dist && npm run prettify",
"test": "mocha \"./src/**/*.spec.js\"",
"test-watch": "npm test -- --watch",
"precommit": "./scripts/precommit && lint-staged",
"postcommit": "./scripts/postcommit",
"prepublishOnly": "npm t && npm run build",
"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
"lint": "esw --ext .js,.jsx --ignore-path .gitignore --cache --format node_modules/eslint-formatter-pretty",
"lint-watch": "npm run lint -- --watch"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"author": "Gabriel Lebec <[email protected]> (https://github.com/glebec)",
"license": "MIT",
"homepage": "https://github.com/glebec/batching-toposort#readme",
"repository": {
"type": "git",
"url": "https://github.com/glebec/batching-toposort"
},
"bugs": "https://github.com/glebec/batching-toposort/issues",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^8.2.2",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-fullstack": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.0",
"husky": "^0.13.4",
"jsverify": "^0.8.4",
"lint-staged": "^7.3.0",
"mocha": "^6.0.1",
"prettier": "1.11.1"
}
}