-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "@dendra-science/task-machine",
"version": "0.2.0",
"description": "Utility class to execute async tasks against model state.",
"license": "BSD-2-Clause-FreeBSD",
"author": "J. Scott Smith <[email protected]>",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DendraScience/task-machine.git"
},
"scripts": {
"babel": "babel src -d dist",
"build": "npm run lint && npm run clean && npm run babel",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"lint-test": "eslint test",
"test": "npm run lint-test && NODE_ENV=test mocha test --recursive --use_strict",
"test:build": "npm run build && npm run test",
"test:watch": "chokidar --initial 'src/**/*.js' 'test/**/*.js' -c 'npm run test:build'"
},
"engines": {
"node": ">=14.19.2"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4"
},
"optionalDependencies": {}
}