-
Notifications
You must be signed in to change notification settings - Fork 310
/
Copy pathpackage.json
44 lines (43 loc) · 1.16 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
{
"name": "rivets",
"description": "Declarative data binding + templating solution.",
"version": "0.8.1",
"author": "Michael Richards",
"url": "http://rivetsjs.com",
"main": "./dist/rivets.js",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mikeric/rivets/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mikeric/rivets.git"
},
"dependencies": {
"sightglass": "~0.2.4"
},
"scripts": {
"pretest": "babel src/parsers.js --out-file spec/lib/parsers.js --presets es2015 --plugins transform-es2015-modules-umd",
"test": "mocha-phantomjs spec/runner.html",
"build": "webpack"
},
"devDependencies": {
"minimist": "~1.1.0",
"mocha": "2.5.3",
"should": "~4.0.4",
"sinon": "~1.10.2",
"webpack": "1.13.1",
"babel-core": "6.9.1",
"babel-cli": "^6.0.0",
"mocha-phantomjs": "4.0.2",
"babel-loader" : "6.2.4",
"commander": "^2.8.1",
"mocha-phantomjs-core" : "1.3.1",
"babel-preset-es2015": "6.9.0",
"babel-plugin-transform-es2015-modules-umd": "6.8.0",
"phantomjs": "2.1.7",
"babel-plugin-add-module-exports" : "0.2.1"
}
}