-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
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
{
"private": true,
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.0.0",
"eslint-config-cheminfo": "^1.7.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-no-only-tests": "^2.0.0",
"flow-bin": "^0.48.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-newer": "^1.3.0",
"gulp-watch": "^4.3.11",
"jest": "^20.0.0",
"lerna": "^2.0.0-rc.4",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"through2": "^2.0.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run build-clean && gulp build",
"build-clean": "rimraf ./packages/*/lib/ ./packages/*/lib-module/",
"eslint": "eslint packages *.js --cache",
"eslint-fix": "npm run eslint -- --fix",
"flow": "flow",
"prepare": "npm run bootstrap",
"prepublish": "npm run build",
"publish": "git pull --rebase && npm run test && lerna publish",
"test": "run-s build test-only flow eslint",
"test-only": "jest",
"test-watch": "jest --watch",
"watch": "gulp watch"
},
"jest": {
"moduleNameMapper": {
"^test/(.*)$": "<rootDir>/packages/larissa/test/$1.js"
}
},
"dependencies": {}
}