-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "jsxquery",
"version": "0.1.2",
"description": "Build UI components with declarative code that compiles to HTML/JSTL and jQuery",
"engines": {
"node": "5.x"
},
"main": "lib/jsxquery.js",
"scripts": {
"test": "mocha --es_staging --harmony_destructuring --harmony_proxies --compilers js:babel-core/register --recursive",
"test:nocache": "BABEL_DISABLE_CACHE=1 npm test --",
"test:watch": "npm test -- --watch",
"compile": "babel --optional runtime -d lib/ src/",
"prepublish": "npm test && npm run compile"
},
"author": "Justin Silvestre",
"repository": {
"type": "git",
"url": "git+https://github.com/justinsilvestre/jsxquery.git"
},
"license": "CC-BY-NC-SA-4.0",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es2015-modules-commonjs-simple": "^6.7.4",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.6.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"expect": "^1.13.0",
"jsdom": "^7.2.0",
"json-loader": "^0.5.4",
"jsxquery-runtime": "1.x",
"mocha": "^2.3.4",
"node-eval": "^1.0.1",
"react": "^0.14.6",
"react-redux": "^4.0.6",
"redux": "^3.0.5",
"sinon": "^1.17.4",
"webpack": "^1.13.0"
},
"dependencies": {
"classnames": "^2.2.1",
"harmony-proxy": "^1.0.0",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"lodash.flatmap": "^4.3.0",
"lodash.pickby": "^4.3.0"
}
}