-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.18 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
{
"name": "parametric-svg-element",
"version": "1.0.0-alpha.5",
"description": "Parametric 2D graphics. As a custom element (aka Web Component).",
"dependencies": {
"array-from": "^2.0.2",
"as": "^0.4.1",
"babelify": "^6.3.0",
"object-assign": "^4.0.1",
"parametric-svg-parse": "^1.0.0-alpha.1",
"parametric-svg-patch": "^1.0.0-alpha.1",
"set-immediate-shim": "^1.0.1"
},
"scripts": {
"clean": "git reset && echo '/node_modules/' > .gitignore && git add .gitignore && git stash save --include-untracked --keep-index '`npm run clean` trash can' && git clean --force -d && git reset --hard && echo '\nclean: Uncommitted and ignored files have been moved to git’s stash. To restore them run `git stash pop --quiet; git checkout .gitignore`.'",
"develop": "hihat test.js -- --plugin=tap-dev-tool",
"lint": "eslint .",
"prepublish": "npm run --silent clean && npm run transpile",
"readme": "dox --raw < module/register.js | doxie --render --inject",
"test": "echo 'Please run `./test.sh` instead. More info: https://github.com/shama/testron/issues/2' && exit 1",
"transpile": "babel --loose es6.modules module --out-dir ."
},
"browserify": {
"transform": [
"babelify"
]
},
"files": [
"/*.js",
"/module/",
"/test/",
"/Readme.md",
"/License.md"
],
"license": "MIT",
"keywords": [
"svg",
"parametric-svg",
"graphics",
"vector",
"cad",
"custom-element",
"web-component",
"custom",
"element",
"2d",
"parametric",
"declarative",
"xml"
],
"author": "Tomek Wiszniewski <t.wiszniewski@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:parametric-svg/element"
},
"devDependencies": {
"babel": "5.8.23",
"babel-eslint": "4.1.2",
"browserify": "11.1.0",
"dox": "0.8.0",
"doxie": "0.2.3",
"doxie.inject": "0.1.1",
"doxie.render": "0.3.2",
"electron-prebuilt": "0.33.0",
"eslint": "1.4.3",
"eslint-config-airbnb": "0.0.8",
"hihat": "2.4.3",
"repeat-element": "1.1.2",
"tap-dev-tool": "1.3.0",
"tap-spec": "2.2.2",
"tape": "4.2.0",
"tape-catch": "1.0.4",
"testron": "1.2.0"
}
}