-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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": "pelmel",
"version": "1.0.0",
"description": "Various contribution, testing and other stuff",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register test/index.js",
"watch": "watchify -t [ babelify --presets [ es2015 react ] ] ./src/index.js -o ./build/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brice/pelmel.git"
},
"keywords": [
"testing",
"draft",
"build",
"test",
"qa"
],
"author": "Brice Favre",
"license": "ISC",
"bugs": {
"url": "https://github.com/brice/pelmel/issues"
},
"homepage": "https://github.com/brice/pelmel#readme",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"watchify": "^3.7.0"
},
"dependencies": {
"babel-preset-react": "^6.3.13",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}