-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "mocha-react-templates-compiler",
"version": "2.1.1",
"description": "react-templates compiler for mocha test framework",
"contributors": [
"Max Rondón <[email protected]>",
"Daniel Barreto <[email protected]>"
],
"main": "dist/es6.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --compilers js:babel-register --recursive test/",
"release": "rm -rf dist && mkdir dist && babel src -d dist",
"build": "npm run lint && npm run release && npm test",
"prepublish": "npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talpor/mocha-react-templates-compiler.git"
},
"keywords": [
"mocha",
"react-templates",
"compiler"
],
"author": "Max Rondon",
"license": "MIT",
"bugs": {
"url": "https://github.com/talpor/mocha-react-templates-compiler/issues"
},
"homepage": "https://github.com/talpor/mocha-react-templates-compiler#readme",
"dependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"react-templates": "^0.6.1"
},
"devDependencies": {
"babel-cli": "6.7.5",
"chai": "3.5.0",
"eslint": "2.8.0",
"eslint-config-airbnb": "7.0.0",
"mocha": "2.4.5",
"sinon": "1.17.3"
}
}