forked from entrylabs/entryjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.92 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
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
{
"name": "entryjs",
"title": "EntryJS",
"description": "JavaScript library for visual programming",
"version": "0.1.0",
"main": "dist/entry.js",
"homepage": "http://play-entry.com",
"author": {
"name": "Entry Korea corp and other contributors"
},
"repository": {
"type": "git",
"url": "https://github.com/boolgom/entryjs.git"
},
"keywords": [
"entry",
"entryjs",
"javascript"
],
"bugs": {
"url": "https://github.com/boolgom/entryjs/issues"
},
"scripts": {
"lint": "cross-env NODE_ENV=lint webpack -w",
"serve": "cross-env NODE_ENV=serve webpack-dev-server --open",
"dev": "webpack -w",
"dist": "webpack"
},
"license": "MIT",
"dependencies": {
"grunt-karma": "^2.0.0",
"lodash": "^4.17.5",
"lodash-webpack-plugin": "^0.11.4",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^3.2.0",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-prettier": "^2.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"karma": "^0.13.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"mocha": "^2.5.3",
"phantomjs": "^1.9.17",
"prettier": "^1.11.1",
"style-loader": "^0.20.2",
"url-loader": "^1.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2",
"webpack-strip-block": "^0.2.0"
}
}