-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "rfexplore",
"version": "0.1.0",
"description": "Interactive Exploration of Reduce-Fold Automata",
"main": "index.js",
"directories": {
"src": "src"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"watch": "webpack --progress --colors --watch --config webpack/webpack.config.js --devtool sourcemap",
"build": "webpack --config ./webpack/webpack.config.js --devtool sourcemap #&& webpack --config ./webpack/webpack.config.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mickymuis/rfexplore"
},
"author": "Micky Faas",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mickymuis/rfexplore/issues"
},
"homepage": "https://github.com/mickymuis/rfexplore#readme",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"extend": "^3.0.0",
"html-loader": "^0.4.4",
"webpack": "1.14.x"
},
"dependencies": {
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"stringify": "^5.1.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"comma-dangle": 0,
"func-names": 0,
"no-alert": 0,
"no-console": 1,
"no-use-before-define": 0,
"prefer-rest-params": 0,
"prefer-template": 0,
"no-mixed-operators": 0,
"no-undef": 0,
"no-underscore-dangle": 0,
"prefer-arrow-callback": 0,
"space-before-function-paren": 0,
"global-require": 0,
"object-shorthand": 0,
"max-len": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"no-restricted-syntax": 0,
"no-bitwise": 0,
"no-plusplus": 0,
"no-unused-vars": 0,
"no-func-assign": 0
},
"env" : {
"browser" : true,
"es6" : true
}
}
}