-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "date-picky",
"version": "1.0.1",
"description": "An API for date picker functionality. ",
"main": "lib/picky.js",
"main:next": "src/picky.js",
"contributors": [
{
"name": "Leonard Koch",
"email": "l.koch@mytaxi.com"
}
],
"scripts": {
"start": "npm run build:main && npm run build:browser",
"build:main": "NODE_ENV=main rollup -c",
"build:browser": "NODE_ENV=browser rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeonardKoch/picky.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/LeonardKoch/picky#readme",
"devDependencies": {
"jest-cli": "^0.10.0",
"babel-cli": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"rollup": "^0.34.10",
"rollup-plugin-babel": "^2.6.1",
"babel-jest": "^15.0.0"
},
"jest": {
"rootDir": "./",
"automock": false,
"scriptPreprocessor": "node_modules/babel-jest",
"testDirectoryName": "test",
"testFileExtensions": [
"spec.js"
],
"moduleFileExtensions": [
"js"
],
"collectCoverage": false
}
}