-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 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
72
73
{
"name": "daisy.js",
"description": "## Credits * expression parser based on [jsep](https://github.com/soney/jsep)",
"version": "0.2.1",
"main": "src/platforms/browser/index",
"files": [
"dist/daisy.js"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.1",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"prettier-eslint-cli": "^4.4.0",
"regenerator-runtime": "^0.11.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"transform": {
".*": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"testRegex": "./__test__/.*\\.test\\.(js)$"
},
"scripts": {
"test": "npm run jest",
"jest": "jest --no-cache",
"build": "rollup --config rollup.config.js",
"dev": "npm run build -- -w",
"lint": "eslint --fix ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daisyjs/daisy.js.git"
},
"keywords": [],
"author": "ImHype",
"contributors": [
"ImHype"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/daisyjs/daisy.js/issues"
},
"homepage": "https://github.com/daisyjs/daisy.js#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"events": "^1.1.1"
},
"directories": {
"doc": "docs",
"example": "examples"
}
}