-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 833 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 833 Bytes
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
{
"name": "test",
"version": "1.0.0",
"keywords": [],
"license": "ISC",
"main": "src/index.js",
"scripts": {
"build": "npm run format && npm run test && npm run babel",
"start": "node dist/index.js",
"test": "jest --coverage --testPathIgnorePatterns TestData.js",
"babel": "babel src --ignore src/__mocks__,src/__test__ --out-dir dist",
"format": "npx prettier --write \"src/**/*.js\"",
"run": "npm run build && npm run start"
},
"dependencies": {
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-watch-typeahead": "^0.4.0",
"prettier": "^1.18.2"
}
}