forked from adopted-ember-addons/validated-changeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.52 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "validated-changeset",
"version": "1.1.1",
"description": "Changesets for your local state",
"main": "dist/validated-changeset.umd.js",
"module": "dist/validated-changeset.es5.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc --outDir dist/es && rollup -c rollup.config.ts",
"test": "jest",
"test:all": "npm run test && npm run test-external:ember-changeset && npm run test-external:ember-changeset-validations",
"test.watch": "jest --watch",
"test:debug:named": "node --inspect-brk node_modules/.bin/jest --runInBand --watch --testNamePattern",
"lint": "eslint . --ext=js,ts",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"start": "tsc -w & rollup -c rollup.config.ts -w",
"stats": "node scripts/size-calc",
"prebuild": "rimraf dist",
"test-external:ember-changeset": "./bin/test-external-changeset.js ember-changeset https://github.com/poteto/ember-changeset.git",
"test-external:ember-changeset-validations": "./bin/test-external-changeset.js ember-changeset-validations https://github.com/poteto/ember-changeset-validations.git",
"contributors": "npx contributor-faces -e \"(*-bot|*\\[bot\\]|*-tomster|homu|bors)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/validated-changeset/validated-changeset.git"
},
"keywords": [
"changeset",
"data",
"validation",
"form"
],
"author": "Scott Newcomer",
"license": "ISC",
"bugs": {
"url": "https://github.com/validated-changeset/validated-changeset/issues"
},
"homepage": "https://github.com/validated-changeset/validated-changeset#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.13.9",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.2",
"fs-extra": "^9.0.1",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-bytes": "^5.3.0",
"rimraf": "^3.0.2",
"rollup": "^1.27.14",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-jest": "^24.2.0",
"typescript": "^3.8.0"
},
"dependencies": {}
}