forked from camwiegert/baffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "baffle",
"version": "0.3.6",
"description": "A tiny javascript library for obfuscating and revealing text in DOM elements.",
"main": "dist/baffle.min.js",
"scripts": {
"start": "webpack -wp",
"build": "webpack -p",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camwiegert/baffle.git"
},
"homepage": "https://camwiegert.github.io/baffle",
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-es2015-classes",
{
"loose": true
}
]
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"author": "Cam Wiegert <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-classes": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.1.1",
"webpack": "^1.13.1"
}
}