-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.7 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
{
"name": "parametric-svg-patch",
"version": "1.0.0-alpha.1",
"description": "Update a parametric SVG element with new data. A low-level library.",
"dependencies": {
"array-from": "^2.0.2",
"parametric-svg-parse": "^1.0.0-alpha.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`.'",
"coverage": "rm -rf coverage && npm run test:transpile && cd .es5 && istanbul cover test.js && mv coverage ..",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"develop": "nodangel --ignore node_modules --ignore coverage --exec 'npm run --silent test:lite'",
"readme": "dox --raw < module/index.js | doxie --render --inject",
"prepublish": "npm run --silent clean && npm run transpile",
"test": "eslint . && npm run test:transpile && node .es5/test.js | tap-spec",
"test:lite": "babel-node test.js | tap-spec",
"test:transpile": "rimraf .es5 && babel test.js module/*.js --out-dir .es5 && mkdirp .es5/node_modules/parametric-svg-spec/specs && cpy 'node_modules/parametric-svg-spec/specs/*' .es5/node_modules/parametric-svg-spec/specs",
"transpile": "babel --loose es6.modules module --out-dir .",
"view-coverage": "echo 'Generating coverage reports...'; npm run coverage >/dev/null && echo '...done.' && opn ./coverage/lcov-report/index.html >/dev/null"
},
"devDependencies": {
"as": "0.4.1",
"babel": "5.8.23",
"babel-eslint": "4.1.2",
"coveralls": "2.11.4",
"cpy": "3.4.1",
"dox": "0.8.0",
"doxie": "0.2.3",
"doxie.inject": "0.1.1",
"doxie.render": "0.3.2",
"eslint": "1.4.3",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "3.3.2",
"isomorphic-ensure": "1.0.1",
"istanbul": "0.3.20",
"js-yaml": "3.4.2",
"jsdom": "6.5.0",
"mkdirp": "0.5.1",
"nodangel": "1.3.8",
"opn-cli": "1.0.0",
"parametric-svg-parse": "1.0.0-alpha",
"parametric-svg-spec": "git://github.com/parametric-svg/spec.git#7ab9639ce17c0e99e910bbbdf6952e8a0d1d5e5a",
"raw-loader": "0.5.1",
"rimraf": "2.4.3",
"tap-spec": "2.2.2",
"tape": "4.2.0",
"tape-catch": "1.0.4",
"xmldom": "0.1.19"
},
"files": [
"/*.js",
"/module/",
"/test/",
"/Readme.md",
"/License.md"
],
"license": "MIT",
"keywords": [],
"author": "Tomek Wiszniewski <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:parametric-svg/patch"
}
}