-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 994 Bytes
/
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
{
"name": "topologica",
"version": "3.2.0",
"description": "Minimal library for reactive dataflow programming.",
"main": "dist/topologica.min.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build && uglifyjs dist/topologica.js -c -m -o dist/topologica.min.js && ls -la dist/topologica.min.js",
"test": "mocha",
"lint": "eslint topologica.js",
"prepublishOnly": "npm run test",
"postpublish": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datavis-tech/topologica.git"
},
"keywords": [
"dataflow",
"reactive"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/topologica/issues"
},
"homepage": "https://github.com/datavis-tech/topologica#readme",
"devDependencies": {
"eslint": "^5.5.0",
"mocha": "^5.2.0",
"rollup": "^0.65.2",
"rollup-plugin-buble": "^0.19.2",
"uglify-js": "^3.4.9"
}
}