forked from yodaiken/dolphinsr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "lowkey-dolphinsr",
"version": "0.0.4",
"description": "Spaced repetition API for JavaScript",
"main": "dist/bundle.js",
"module": "dist/bundle.mjs",
"jsnext:main": "dist/rollup-starter-project.mjs",
"repository": "https://github.com/Nilowave/dolphinsr",
"author": "Danilo Meulens",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.0.1",
"flow-bin": "^0.43.1",
"flow-copy-source": "^1.1.0",
"jest": "^19.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2"
},
"scripts": {
"lint": "echo lint",
"flow": "flow check",
"prebuild": "npm run lint",
"build": "rollup -c && flow-copy-source lib dist",
"test:dev": "jest",
"test:watch": "jest --watch",
"test": "TEST_DIST=1 jest",
"lint:watch": "esw --color --watch --fix",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version patch && npm minor",
"publish:major": "npm version patch && npm major"
},
"dependencies": {
"debug": "^2.6.3",
"uuid": "^3.0.1"
}
}