-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "noflo-strings",
"description": "String Utilities for NoFlo",
"version": "0.5.1",
"keywords": [
"noflo",
"strings",
"utilities"
],
"author": "Kenneth Kan <[email protected]>",
"contributors": [
{
"name": "Henri Bergius",
"email": "[email protected]"
},
{
"name": "Ryan Shaw",
"email": "[email protected]"
},
{
"name": "Paul Mölders",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-strings"
},
"license": "MIT",
"dependencies": {
"btoa": "~1.2.1",
"noflo": "^1.0.0",
"sift-string": "0.0.2",
"underscore": "~1.12.0"
},
"devDependencies": {
"chai": "^4.2.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",
"fbp-loader": "^0.1.2",
"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.2.1",
"noflo-component-loader": "^0.4.1",
"noflo-runtime-headless": "^0.2.0",
"noflo-runtime-postmessage": "^0.13.0",
"noflo-webpack-config": "^2.0.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
},
"noflo": {
"icon": "font"
},
"scripts": {
"prebuild": "noflo-cache-preheat",
"build": "webpack --config node_modules/noflo-webpack-config/webpack.config.js",
"pretest": "eslint .",
"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"
}
}