forked from entrylabs/entryjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.17 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
89
90
91
92
93
94
95
96
97
98
{
"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",
"test": "jest --colors",
"dist": "webpack"
},
"license": "MIT",
"dependencies": {
"@types/node": "^11.9.5",
"autoprefixer": "^9.4.3",
"axios": "^0.18.0",
"entry-tool": "latest",
"events": "^3.0.0",
"hammerjs": "^2.0.8",
"hyperid": "^1.4.1",
"jest": "^24.1.0",
"lodash": "^4.17.11",
"postcss-flexbugs-fixes": "^4.1.0",
"simplebar": "^3.1.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.28.3"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-object-assign": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/runtime": "^7.0.0",
"@entrylabs/event": "latest",
"@types/pixi.js": "^4.8.6",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-dynamic-import-node": "^2.0.0",
"chai": "^3.2.0",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"cssnano": "^4.1.7",
"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",
"jest-jenkins-reporter": "^1.0.2",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"less": "^3.9.0",
"less-loader": "^4.0.6",
"mocha": "^6.0.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.11.1",
"style-loader": "^0.20.2",
"sugarss": "^2.0.0",
"typescript": "^3.2.2",
"url-loader": "^1.0.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.1.2",
"webpack-strip-block": "^0.2.0"
},
"jest": {
"collectCoverage": true,
"testResultsProcessor": "jest-jenkins-reporter"
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "report.xml",
"indent": 4
}
}