forked from WaiSiuKei/finscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.51 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "finscript",
"version": "1.0.0",
"main": "dist/finscript.umd.js",
"module": "dist/finscript.es5.js",
"typings": "dist/types/finscript.d.ts",
"files": [
"dist"
],
"author": "waisuikei <wakiki@outlook.com>",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"serve": "gulp serve",
"serve:dist": "gulp serve:dist",
"lib:webpack": "gulp clean && webpack --config ./conf/webpack.lib.conf.js",
"lib": "rollup -c ./conf/rollup.conf.js",
"test": "gulp test",
"test:auto": "gulp test:auto",
"test:unit": "karma start conf/karma.unit.conf.js",
"antlr:ts": "rimraf ./gen && antlr4ts -visitor -o ./gen Finscript.g4"
},
"dependencies": {
"antlr4ts": "^0.4.1-alpha.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/lodash": "^4.14.71",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.17",
"antlr4ts-cli": "^0.4.0-alpha.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"browser-sync": "^2.18.13",
"browser-sync-spa": "^1.0.3",
"chai": "^4.1.0",
"es6-shim": "^0.35.3",
"eslint": "^4.3.0",
"eslint-config-xo-space": "^0.16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"extract-text-webpack-plugin": "^3.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-filter": "^5.0.0",
"gulp-hub": "^4.1.0",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.29.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-loader": "^2.3.1",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-fail-plugin": "^1.0.6",
"webpack-hot-middleware": "^2.18.2"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"jasmine": true
},
"extends": [
"xo-react/space",
"xo-space/esnext"
],
"parser": "babel-eslint"
}
}