-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 KB
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
{
"name": "nflow",
"version": "0.2.17",
"description": "event/data/control flow",
"main": "dist/nflow.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.test.js",
"docs": "jsdoc -c src-docs/config.json",
"build:test": "webpack --config webpack.config.test.js",
"build:dist": "webpack --config webpack.config.dist.js",
"eslint": "eslint 'src/**/*.js' 'test/**/*.js'",
"pretest": "npm run eslint && npm run build:test",
"test": "mocha ./docs/dist/node-test.js --reporter mocha-circleci-reporter",
"posttest": "npm run build:dist"
},
"keywords": [
"event",
"data",
"control",
"flow"
],
"author": "Zoltan Bourne",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-helper-function-name": "^6.6.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"benchmark": "^2.1.3",
"chai": "^3.5.0",
"es6-promise": "^4.0.5",
"eslint": "^3.9.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.10.0",
"jsdoc": "^3.4.3",
"jsdoc-webpack-plugin": "^0.0.2",
"lodash": "^4.17.4",
"lodash.clonedeep": "^4.5.0",
"minami": "^1.1.1",
"mocha-circleci-reporter": "^0.0.2",
"mocha-loader": "^1.0.0",
"nflow-vis": "^0.1.11",
"node-circleci-autorelease": "^2.2.4",
"taffydb": "^2.7.3",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/nflow-js/nflow.git"
},
"bugs": {
"url": "https://github.com/nflow-js/nflow/issues"
},
"homepage": "https://github.com/nflow-js/nflow#readme"
}