-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 952 Bytes
/
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
{
"name": "noflo-yaml",
"description": "YAML handling components for the NoFlo flow-based programming environment",
"author": "Henri Bergius <[email protected]>",
"version": "0.5.0",
"keywords": [
"noflo"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-yaml.git"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"coffeescript": "^2.5.1",
"js-yaml": "^4.0.0",
"noflo": "^1.0.0",
"noflo-core": ">=0.4.0",
"noflo-groups": ">=0.2.0",
"noflo-objects": ">=0.3.0",
"noflo-strings": ">=0.3.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha -R spec -t 2000 spec/*.js"
}
}