-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@shapeshift/core",
"version": "1.0.0-alpha.1",
"description": "Vue.js JSON Schema based form component",
"main": "dist/shapeshift.cjs.js",
"module": "dist/shapeshift.es.js",
"browser": "dist/shapeshift.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": "shapeshiftjs/shapeshift-core",
"author": "apparentvisuals",
"license": "MIT",
"bugs": {
"url": "https://github.com/shapeshiftjs/shapeshift-core/issues"
},
"homepage": "https://github.com/shapeshiftjs/shapeshift-core#readme",
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/json-schema": "^6.0.0",
"coveralls": "^3.0.0",
"jest": "^22.0.3",
"jest-cli": "^22.0.3",
"rimraf": "^2.6.2",
"rollup": "^0.65.0",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.14.0",
"semver": "^5.4.1",
"ts-jest": "^23.0.0",
"typescript": "^2.6.2"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
},
"roots": [
"src"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"mapCoverage": true
}
}