-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 2.2 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
72
73
74
75
{
"name": "noflo-core",
"description": "NoFlo Essentials",
"version": "0.6.1",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Kenneth Kan",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Kenneth Kan",
"email": "[email protected]"
},
{
"name": "Ryan Shaw",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-core.git"
},
"license": "MIT",
"dependencies": {
"noflo": "^1.0.0",
"owl-deepcopy": "~0.0.4"
},
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-mocha": "^10.0.4",
"fbp-spec": "^0.8.0",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.0.0",
"noflo-component-loader": "^0.4.0",
"noflo-nodejs": "^0.15.0",
"noflo-runtime-headless": "^0.2.0",
"noflo-runtime-postmessage": "^0.13.0",
"noflo-webpack-config": "^2.0.0",
"nyc": "^15.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [
"noflo"
],
"scripts": {
"build": "webpack --config node_modules/noflo-webpack-config/webpack.config.js",
"pretest": "eslint *.js components/*.js spec/mocha/*.js",
"test:mocha:node": "nyc mocha --exit --require node_modules/noflo-webpack-config/inject.js spec/mocha/*.js",
"test:mocha:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
"test:fbp-spec:node": "fbp-spec --secret test --address ws://localhost:3333 --command 'noflo-nodejs --port 3333 --secret test' spec/*.yaml",
"test:fbp-spec:browser": "fbp-spec --address ws://localhost:3569 --command \"noflo-runtime-headless -f dist/test.js\" spec/*.yaml",
"test": "npm run test:mocha:node && npm run test:fbp-spec:node && npm run test:mocha:browser && npm run test:fbp-spec:browser"
},
"nyc": {
"include": [
"components/*.js"
]
}
}