-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.25 KB
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
{
"name": "react-shallowdom-helpers",
"version": "0.0.9",
"description": "A set of helpers to traverse the object returned by shallow renderer.",
"main": "src/index.js",
"scripts": {
"build": "rm -rf ./dist && mkdir ./dist && mkdir ./dist/src && cp ./README.md ./dist && cp ./package.json ./dist && browserify -t [ babelify --presets [ es2015 ] ] ./src/index.js --standalone index > ./dist/src/index.js",
"test": "./node_modules/.bin/mocha --require test/setup.js --compilers js:babel-core/register test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acnalesso/react-shallowdom-helpers.git"
},
"keywords": [
"react",
"shallow",
"dom",
"shallow",
"rendering",
"headless"
],
"author": "acnalesso@yahoo.co.uk",
"license": "MIT",
"bugs": {
"url": "https://github.com/acnalesso/react-shallowdom-helpers/issues"
},
"homepage": "https://github.com/acnalesso/react-shallowdom-helpers#readme",
"devDependencies": {
"babel": "^6.3.13",
"babel-core": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"react": "^0.14.3"
}
}