-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "noflo-objects",
"description": "Object Utilities for NoFlo",
"version": "0.7.0",
"keywords": [
"noflo",
"objects",
"utilities"
],
"author": "Kenneth Kan <[email protected]>",
"contributors": [
{
"name": "Henri Bergius",
"email": "[email protected]"
},
{
"name": "Ryan Shaw",
"email": "[email protected]"
},
{
"name": "James",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-objects.git"
},
"dependencies": {
"jsonpath": "^1.0.2",
"noflo": "^1.0.0",
"owl-deepcopy": "~0.0.6",
"underscore": "~1.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.8.1",
"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-runtime-headless": "^0.2.0",
"noflo-runtime-postmessage": "^0.13.0",
"noflo-webpack-config": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"noflo": {
"icon": "list"
},
"scripts": {
"prebuild": "noflo-cache-preheat",
"build": "webpack --config node_modules/noflo-webpack-config/webpack.config.js",
"pretest": "eslint components/*.js spec/*.js",
"test:node": "mocha --exit --require node_modules/noflo-webpack-config/inject.js spec/*.js",
"test:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
"test": "npm run test:node && npm run test:browser"
}
}