-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "noflo-assembly",
"version": "0.3.1",
"description": "Industrial approach to writing NoFlo applications",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-assembly.git"
},
"scripts": {
"lint": "eslint src/*.js example/components/*.js spec/*.js",
"build": "tsc",
"pretest": "npm run build && npm run lint",
"test": "mocha -R spec spec/*.js"
},
"keywords": [
"noflo",
"ecosystem:noflo",
"ecosystem:noflo-assembly"
],
"author": "Vladimir Sibirov",
"license": "MIT",
"bugs": {
"url": "https://github.com/noflo/noflo-assembly/issues"
},
"homepage": "https://github.com/noflo/noflo-assembly/wiki",
"dependencies": {
"noflo": "^1.0.0"
},
"devDependencies": {
"@types/node": "^14.14.12",
"chai": "^4.1.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.3",
"noflo": "^1.4.2",
"noflo-wrapper": "^0.5.0",
"typescript": "^4.1.2"
}
}