forked from mikeric/rivets
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
35 lines (35 loc) · 927 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": "tinybind",
"description": "Declarative data binding + templating solution.",
"version": "1.0.0",
"author": "Luiz Américo Pereira Câmara",
"url": "https://github.com/blikblum/tinybind",
"main": "./dist/tinybind.js",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blikblum/tinybind/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/blikblum/tinybind.git"
},
"scripts": {
"pretest": "node tools/build.js --development",
"test": "node tools/test",
"build": "node tools/build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"mocha": "^6.1.4",
"puppeteer": "^1.17.0",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-uglify": "^6.0.2",
"should": "~4.0.4",
"sinon": "~1.10.2"
}
}