forked from mir3z/aalib.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "aalib.js",
"version": "2.0.0",
"description": "ASCII art library in JavaScript",
"main": "dist/aalib.js",
"module": "lib/index.js",
"author": "mirz <[email protected]>",
"license": "MIT",
"repository": "https://github.com/mir3z/aalib.js",
"scripts": {
"dev": "webpack-dev-server --config dev/webpack.config.js",
"dev:playground": "webpack-dev-server --config playground/webpack.config.js",
"build": "npm run build:dist && npm run build:lib",
"build:dist": "webpack --progress --colors",
"build:lib": "babel src --out-dir lib",
"clean": "rm -rf lib dist",
"test": "karma start",
"test:perf": "node ./test/perf/bin/run-perf.js",
"lint": "eslint src/** test/**"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"benchmark": "^2.1.4",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"eslint": "^4.8.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.4",
"lodash": "^4.17.4",
"mocha": "^3.5.3",
"sinon": "^4.0.0",
"vue-loader": "^13.5.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"rxjs": "^5.4.3",
"vue": "^2.5.7"
}
}