forked from chanind/hanzi-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "hanzi-writer",
"version": "0.11.1",
"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-lib.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"codecov": "^3.0.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-cli": "^22.2.1",
"lolex": "^2.3.2",
"nise": "^1.2.5",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"scripts": {
"test": "jest",
"lint-test": "eslint -c .eslintrc-jest src",
"build": "grunt",
"prepublishOnly": "grunt"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/../jest-setup.js",
"transform": {
".*": "<rootDir>/../babel-jest-processor.js"
},
"rootDir": "src",
"coverageDirectory": "../coverage/",
"collectCoverage": true
}
}