-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "noflo-runtime-base",
"description": "Base library for building NoFlo runtimes",
"version": "0.13.1",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-runtime-base.git"
},
"license": "MIT",
"devDependencies": {
"buffer": "^6.0.1",
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.1.3",
"noflo-component-loader": "^0.4.0",
"noflo-core": ">= 0.4.0",
"noflo-webpack-config": "^2.0.1",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"util": "^0.12.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [
"noflo"
],
"scripts": {
"lint": "eslint src",
"build": "noflo-cache-preheat && webpack --config ./webpack.config.js",
"pretest": "npm run lint && npm run build",
"test:nodejs": "nyc mocha --require spec/utils/inject.js spec/*.js",
"test:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
"test": "npm run test:nodejs && npm run test:browser"
},
"main": "./src/Base.js",
"dependencies": {
"debounce": "^1.1.0",
"debug": "^4.0.0",
"flowtrace": "^0.1.3",
"json-stringify-safe": "^5.0.1",
"noflo": "^1.4.0"
},
"nyc": {
"include": [
"src/*.js",
"src/protocol/*.js"
]
}
}