forked from chanind/hanzi-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "hanzi-writer",
"version": "1.4.2",
"author": "David Chanin <[email protected]> (http://chanind.github.io/hanzi-writer/)",
"description": "Hanzi Writer is a free and open-source javascript library for both animating simplified Chinese characters and quizzing users on character stroke order.",
"repository": "chanind/hanzi-writer",
"main": "dist/hanzi-writer.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"codecov": "^3.3.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-no-for-of-loops": "^1.0.0",
"eslint-plugin-react": "^7.4.0",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-webpack": "^3.0.2",
"hanzi-writer-data": "^1.0.0",
"jest-canvas-mock": "^2.1.0",
"jest-cli": "^24.8.0",
"lolex": "2.3.2",
"nise": "^1.2.5",
"semantic-release": "^15.13.12",
"webpack": "^3.6.0"
},
"scripts": {
"test": "jest",
"lint-test": "eslint -c .eslintrc-jest src",
"build": "grunt",
"prepublishOnly": "grunt",
"semantic-release": "semantic-release"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"setupFilesAfterEnv": [
"<rootDir>/../jest-setup.js"
],
"transform": {
".*": "<rootDir>/../babel-jest-processor.js"
},
"testURL": "https://test.com/url#tag",
"rootDir": "src",
"coverageDirectory": "../coverage/",
"collectCoverage": true
}
}