This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "yourchoice",
"version": "2.2.4",
"description": "Resembles the selection behavior of popular file managers",
"license": "MIT",
"author": "Actano GmbH (https://rplan.com/)",
"scripts": {
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test-ci": "yarn run lint && jest --coverage && codecov",
"build": "yarn run build:commonjs && yarn run build:umd",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "BABEL_ENV=commonjs webpack-cli src/index.js",
"prepublish": "yarn run clean && yarn run build",
"lint": "eslint \"src/**/*.js\" \"__test__/**/*.js\"",
"clean": "node ./node_modules/rimraf/bin.js lib"
},
"main": "lib/index.js",
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/"
},
"repository": {
"type": "git",
"url": "git://github.com/actano/yourchoice.git"
},
"keywords": [
"selection",
"multi",
"multiselect",
"range",
"toggle",
"shift",
"iterator",
"tree"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"eslint": "^5.8.0",
"eslint-config-actano-base": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"jest-cli": "^23.6.0",
"rimraf": "^2.5.2",
"sinon": "^7.1.0",
"sinon-chai": "^3.2.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
}
}