-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "simplebind.js",
"version": "2.0.1",
"description": "Lightweight, extendable, dependency-free binding framework. Fast.",
"main": "dist/simpleBind.cjs.js",
"module": "dist/simpleBind.esm.js",
"browser": "dist/simpleBind.umd.js",
"scripts": {
"build": "env buildTarget=prod node_modules/.bin/rollup -c",
"watch": "node_modules/.bin/rollup -c -w",
"dev": "npm-run-all --parallel watch server",
"test": "sh scripts/runTests.sh",
"pretest": "npm run build",
"server": "node server"
},
"dependencies": {},
"devDependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.3",
"faucet": "0.0.1",
"npm-run-all": "^4.1.5",
"pug": "^2.0.3",
"rollup": "^0.66.0",
"rollup-plugin-browsersync": "^0.2.6",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6eDesign/simpleBind.js.git"
},
"keywords": [
"js",
"data-binding"
],
"author": "Jonathan Greenemeier <[email protected]> (https://github.com/6edesign)",
"license": "ISC",
"bugs": {
"url": "https://github.com/6eDesign/simpleBind.js/issues"
},
"homepage": "https://github.com/6eDesign/simpleBind.js#readme"
}