-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "ejsonml",
"version": "0.0.4",
"description": "JsonML with expression",
"main": "dist/ejsonml.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "$(npm bin)/eslint render parser",
"clean": "rm -rf dist/",
"dev": "$(npm bin)/webpack-dev-server --config dev/webpack.dev.config.js --content-base dev/ --inline --hot --port 3035",
"watch": "cd dev && node ../parser/bin.js -c",
"prebuild": "npm run clean",
"build": "npm run rollup && MIN=min npm run rollup",
"rollup": "$(npm bin)/rollup --config --environment NODE_ENV:production --sourcemap"
},
"bin": {
"ejsonml": "parser/bin.js"
},
"dependencies": {
"ejsonml-parser": "^0.0.5",
"ejsonml-parser-javascript": "^0.0.3",
"ejsonml-render": "^0.0.4"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^1.2.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.10.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^2.0.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"keywords": [
"jsonml",
"expression",
"hyperscript",
"jsx"
],
"author": "lon <[email protected]> (https://github.com/cnlon)",
"repository": {
"type": "git",
"url": "git+https://github.com/cnlon/ejsonml.git"
},
"bugs": {
"url": "https://github.com/cnlon/ejsonml/issues"
},
"homepage": "https://github.com/cnlon/ejsonml#readme",
"license": "MIT"
}