-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "undertone",
"version": "0.9.9",
"description": "A Custom Elements (v1-spec) code organizer/compiler that tones down Javascript by emphasizing the structure and beauty of HTML",
"keywords": [
"undertone",
"html5",
"web components",
"user interface",
"es6",
"custom elements",
"declarative",
"front end"
],
"scripts": {
"lint": "run-p lint:*",
"lint:js": "standard -v --global define --plugin html 'src/*.js'",
"codecov": "nyc --exclude 'tests/*.js' --reporter=text tape 'tests/*.js'",
"complexity": "cqc src/ --verbose --disable-jscpd",
"test": "run-s lint codecov complexity",
"build": "run-p test"
},
"main": "src/compiler.js",
"bin": "src/cli.js",
"devDependencies": {
"cqc": "^0.6.0",
"eslint-plugin-html": "^6.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"onchange": "^6.0.0",
"standard": "^12.0.1",
"tape": "^4.11.0",
"terser": "^4.1.2",
"tiny-lr": "^1.1.1"
},
"dependencies": {
"jsdom": "^15.1.1",
"source-map": "^0.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/bcosca/undertone.git"
},
"bugs": {
"url": "https://github.com/bcosca/undertone/issues"
}
}