-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "handwrite",
"version": "1.8.3",
"description": "creates masking effect that looks like handwriting",
"main": "dist/index.umd.js",
"scripts": {
"start": "node server.js",
"commit": "git-cz",
"watch:test": "jest --watch",
"test": "jest",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel src",
"build:umd": "webpack --config webpack.config.babel.js --output-filename index.umd.js",
"build:umd.min": "webpack --config webpack.config.babel.js --output-filename index.umd.min.js -p",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/lonelydatum/handwrite.git"
},
"keywords": [
"handwriting",
"mask"
],
"devDependencies": {
"babel-cli": "6.22.2",
"babel-jest": "18.0.0",
"babel-loader": "6.2.10",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.22.0",
"babel-preset-stage-3": "6.22.0",
"chai": "3.5.0",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"jest-cli": "18.1.0",
"mocha": "3.2.0",
"npm-run-all": "4.0.1",
"rimraf": "2.5.4",
"semantic-release": "^6.3.2",
"webpack": "2.2.1",
"webpack-dev-server": "2.2.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2",
"stage-3"
]
},
"jest": {
"testEnvironment": "jsdom"
},
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2",
"signals": "1.0.0"
},
"author": "Gar Liu <[email protected]> (http://lonelydatum.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lonelydatum/handwrite/issues"
},
"homepage": "https://github.com/lonelydatum/handwrite#readme"
}