-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "konnektid-js-utils",
"description": "Several javascript utilities used throughout Konnektid",
"main": "dist/index.js",
"author": "Simone Potenza",
"version": "0.5.0",
"bugs": {
"url": "https://github.com/Konnektid/konnektid-js-utils"
},
"scripts": {
"postinstall": "npm run build",
"eslint": "eslint src",
"build": "babel src --out-dir dist --ignore $npm_package_config_buildignore --source-maps --copy-files",
"test": "babel-node node_modules/.bin/babel-istanbul cover --root src/ --include-all-sources _mocha -- --timeout 10000 --recursive $(find src -name __test__ -not -path '*/node_modules/*')",
"release": "standard-version"
},
"config": {
"buildignore": "__test__"
},
"private": true,
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-konnektid": "github:konnektid/babel-preset-konnektid",
"draft-js": "^0.9.1",
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-istanbul": "^0.11.0",
"chai": "^3.5.0",
"eslint": "^3.2.0",
"eslint-config-konnektid": "github:konnektid/eslint-config-konnektid",
"eslint-plugin-babel": "^3.3.0",
"istanbul": "^0.3.19",
"longjohn": "^0.2.9",
"mocha": "^2.5.3",
"standard-version": "^2.4.0"
}
}