-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "@3lessthan/nodetools",
"version": "0.9.5",
"description": "Toolkit for quickly appending simple to complex components to the DOM.",
"main": "nodetools.js",
"scripts": {
"test": "./node_modules/.bin/_mocha",
"build:babel": "./node_modules/.bin/babel src/js -d lib",
"build": "./node_modules/.bin/grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/3lessthan/nodetools.git"
},
"keywords": [
"toolkit",
"node",
"dom",
"components",
"web components lite"
],
"author": "Adam Raposo",
"license": "MIT",
"homepage": "https://github.com/3lessthan/nodetools.git",
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"babel-eslint": "10.0.1",
"eslint": "5.12.1",
"grunt": "1.0.3",
"grunt-babel": "8.0.0",
"grunt-cli": "1.3.2",
"load-grunt-tasks": "4.0.0",
"mocha": "5.2.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"ie 11"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"compat"
],
"rules": {
"compat/compat": "warn"
}
}
}