-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.34 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "https://colinmeinke.com"
},
"babel": {
"env": {
"cjs": {
"plugins": [
[
"replace-identifiers",
{
"__DEV__": "process.env.NODE_ENV !== 'production'"
}
],
"transform-object-rest-spread"
],
"presets": [
"es2015"
]
},
"modules": {
"plugins": [
[
"replace-identifiers",
{
"__DEV__": "process.env.NODE_ENV !== 'production'"
}
],
"transform-object-rest-spread"
],
"presets": [
[
"es2015",
{
"modules": false
}
]
]
}
}
},
"bugs": {
"url": "https://github.com/colinmeinke/wilderness-dom-node/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"svg-points": "^6.0.0"
},
"description": "A set of functions to convert between SVG DOM nodes, Plain Shape Objects and Frame Shapes",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-inline-replace-variables": "^1.3.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-replace-identifiers": "^0.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"chai": "^4.1.0",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-rollup-preprocessor": "^4.0.1",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"semantic-release": "^15.9.9",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"travis-deploy-once": "^5.0.2"
},
"homepage": "https://github.com/colinmeinke/wilderness-dom-node#readme",
"license": "MIT",
"name": "wilderness-dom-node",
"main": "cjs/index.js",
"module": "modules/index.js",
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/wilderness-dom-node.git"
},
"scripts": {
"build": "yarn build:bundles && yarn build:cjs && yarn build:modules",
"build:bundles": "node bundle.js",
"build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel src --out-dir cjs",
"build:modules": "NODE_ENV=production BABEL_ENV=modules babel src --out-dir modules",
"commit": "git-cz",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run tidy && npm run build",
"semantic-release": "semantic-release",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"tidy": "rimraf modules cjs dist",
"travis-deploy-once": "travis-deploy-once"
},
"version": "0.0.0-development"
}