forked from Polymer/polymer-modulizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "polymer-modulizer",
"description": "Converts Bower + HTML Imports packages to npm + JS modules",
"version": "0.2.1",
"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",
"test": "npm run build && mocha && npm run lint",
"lint": "tslint -p ./",
"format": "find src test | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file -i",
"polymer:clean": "mkdir -p ./fixtures/generated/polymer && rm -rf ./fixtures/generated/polymer",
"polymer:test": "npm run build && node lib/tools/test-polymer",
"polymer:checkpoint": "npm run build && node lib/tools/checkpoint-polymer",
"clean": "rm -rf ./lib/ && rm -rf ./fixtures/generated/*",
"quicktest": "tsc ; mocha",
"test:watch": "watchy -w src/ -w custom_typings/ -- npm run quicktest --loglevel=silent",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"@types/chai": "^3.5.2",
"@types/esprima": "^2.1.33",
"@types/inquirer": "^0.0.35",
"@types/mkdirp": "^0.5.1",
"@types/mz": "^0.0.31",
"@types/rimraf": "2.0.2",
"@types/semver": "^5.3.32",
"ast-types": "^0.9.11",
"chai": "^3.5.0",
"chalk": "^2.0.1",
"command-line-args": "^4.0.6",
"command-line-usage": "^4.0.0",
"esprima": "^3.1.3",
"inquirer": "^3.2.0",
"ix": "^2.0.1",
"jscodeshift": "^0.3.30",
"mkdirp": "^0.5.1",
"mz": "^2.6.0",
"polymer-analyzer": "^2.0.2",
"polymer-workspaces": "^1.0.0",
"recast": "^0.12.4",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"source-map-support": "^0.4.15",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/diff": "^3.2.0",
"@types/mocha": "^2.2.41",
"clang-format": "^1.0.53",
"diff": "^3.3.0",
"gulp": "^3.9.1",
"mocha": "^3.5.3",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"watchy": "^0.7.0"
}
}