This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
77 lines (77 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "polymer-modulizer",
"description": "Converts Bower + HTML Imports packages to npm + JS modules",
"version": "0.4.0",
"author": "The Polymer Project Authors",
"repository": {
"type": "git",
"url": "https://github.com/Polymer/polymer-modulizer.git"
},
"license": "BSD-3-Clause",
"bin": {
"modulizer": "bin/modulizer.js"
},
"scripts": {
"build": "tsc",
"build:fixtures": "npm run build && node lib/tools/update-fixtures",
"test:full": "npm run build && bash test/run-mocha.sh && npm run lint",
"test:fast": "npm run build && bash test/run-mocha.sh unit",
"test:watch": "tsc-then -- bash test/run-mocha.sh unit",
"test": "npm run test:fast && npm run lint",
"lint": "tslint -p ./",
"format": "find bin src test | grep \"\\.js$\\|\\.ts$\" | xargs clang-format --style=file -i",
"clean": "rm -rf ./lib/",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@types/chai": "^4.1.4",
"@types/esprima": "^2.1.33",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.35",
"@types/inquirer": "^0.0.35",
"@types/js-yaml": "^3.11.1",
"@types/mkdirp": "^0.5.1",
"@types/mz": "^0.0.31",
"@types/node-fetch": "^1.6.7",
"@types/rimraf": "2.0.2",
"@types/semver": "^5.3.32",
"ast-types": "^0.9.11",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"command-line-args": "^4.0.6",
"command-line-usage": "^4.0.0",
"esprima": "^3.1.3",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"inquirer": "^3.2.0",
"ix": "2.1.0",
"js-yaml": "^3.11.0",
"jscodeshift": "^0.5.1",
"mkdirp": "^0.5.1",
"mz": "^2.6.0",
"node-fetch": "^2.1.1",
"polymer-analyzer": "^3.0.1",
"polymer-workspaces": "^2.1.0",
"recast": "^0.12.4",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"source-map-support": "^0.4.15",
"spdx-license-list": "^3.0.1",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/diff": "^3.2.0",
"@types/mocha": "^5.2.3",
"clang-format": "^1.0.53",
"diff": "^3.3.0",
"dir-compare": "^1.4.0",
"mocha": "^5.2.0",
"tsc-then": "^1.1.0",
"tslint": "^5.10.0",
"typescript": "^2.8.1"
}
}