-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.46 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
46
47
48
49
{
"name": "@stilva/spring",
"version": "1.0.0",
"description": "",
"main": "./dist/spring.cjs.js",
"exports": {
".": "./dist/spring.esm.js"
},
"scripts": {
"start": "BABEL_ENV=build rollup -c ./rollup.config.js --watch",
"build": "BABEL_ENV=build rollup -c ./rollup.config.js --compact",
"test": "BABEL_ENV=test jest --useStderr --watch --colors --testPathIgnorePatterns='ssr.test.js'",
"test:ssr": "BABEL_ENV=test jest --useStderr --watch --colors --env=node src/ssr.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stilva/spring.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stilva/spring/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dist"
}
},
"homepage": "https://github.com/stilva/spring#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"@testing-library/react": "^9.5.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {}
}