-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-obj",
"version": "1.0.3",
"description": "represent DOM elements as objects in React, alternative to jsx",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dustinsanders/react-obj"
},
"scripts": {
"build": "babel src/index.js --out-file lib/index.js",
"clean": "rm -rf lib/",
"dev": "node index.js",
"prebuild": "npm run clean && mkdir lib && npm test",
"preversion": "npm run build",
"src": "node src/register.js",
"test": "ava --fail-fast -v"
},
"keywords": [
"react",
"jsx",
"alternative",
"jsx alternative",
"object",
"dom",
"xml",
"json"
],
"author": {
"name": "Dustin Sanders",
"url": "https://github.com/dustinsanders"
},
"license": "ISC",
"devDependencies": {
"ava": "^0.11.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-helpers": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"enzyme": "^1.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1",
"express": "^4.13.4",
"jsdom": "^8.0.2",
"piping": "^0.3.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"react-select": "^1.0.0-beta8",
"sinon": "^1.17.3",
"webpack": "^1.12.13",
"webpack-dev-middleware": "^1.5.1"
},
"peerDependencies": {
"react": "0.14.x"
}
}