-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "chaffle",
"version": "2.1.0",
"description": "Shuffle Characters Randomly.",
"main": "src/chaffle.js",
"scripts": {
"dev": "karma start",
"lint": "eslint ./src/chaffle.js",
"minify": "uglifyjs ./src/chaffle.js -o ./docs/chaffle.min.js",
"start": "npm run lint && npm run minify && npm run dev",
"serve": "browser-sync start --server ./docs --files index.html",
"test": "karma start --single-run"
},
"devDependencies": {
"browser-sync": "^2.14.0",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-standard": "^1.3.2",
"eslint-plugin-promise": "^1.1.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^7.0.0",
"phantomjs-prebuilt": "^2.1.7",
"uglify-js": "^3.7.4",
"webpack": "^1.12.14"
},
"repository": {
"url": "https://github.com/blivesta/chaffle.git",
"type": "git"
},
"license": "MIT",
"keywords": [
"effect"
],
"author": {
"name": "blivesta",
"url": "http://www.blivesta.com"
}
}