-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.59 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@set-state/core",
"version": "0.1.4",
"main": "dist/core.js",
"umd:main": "dist/core.umd.js",
"module": "dist/core.m.js",
"source": "src/core.js",
"scripts": {
"proofread": "node ./test/proofread.js",
"clean": "rimraf dist",
"prebuild": "npm run lint && npm run clean",
"build": "microbundle",
"postbuild": "bundlesize",
"cover": "nyc report --reporter=text-lcov | coveralls",
"cover:dev": "nyc report --reporter=html",
"dev": "microbundle watch",
"lint": "eslint src",
"prerelease": "git checkout master && git pull origin master",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish",
"pretest": "npm run build && npm run test:doc",
"test:doc": "jsmd README.md",
"test:dev": "tape -r esm test/**/*.js | tap-spec",
"test": "nyc tape -r esm test/**/*.js | tap-spec"
},
"keywords": [
"set-state",
"functional",
"state management",
"reactive"
],
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/set-state/core.git"
},
"author": "Paul <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/set-state/core/issues"
},
"homepage": "https://github.com/set-state/core#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"bundlesize": "^0.17.0",
"coveralls": "^3.0.0",
"dictionary-en-us": "^2.0.0",
"documentation": "^6.3.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"esm": "^3.0.18",
"fast-glob": "^2.2.0",
"jsmd": "^1.0.0",
"microbundle": "^0.4.4",
"nyc": "^11.6.0",
"prettier": "^1.12.0",
"remark-lint": "^6.0.1",
"remark-parse": "^5.0.0",
"remark-retext": "^3.1.0",
"remark-stringify": "^5.0.0",
"retext-english": "^3.0.0",
"retext-equality": "^3.3.0",
"retext-google-styleguide": "^1.0.0",
"retext-passive": "^1.3.0",
"retext-readability": "^4.2.0",
"retext-simplify": "^4.1.1",
"retext-spell": "^2.3.1",
"rimraf": "^2.6.2",
"standard-version": "^4.3.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"to-vfile": "^2.2.0",
"unified": "^6.1.6",
"vfile-reporter": "^4.0.0"
},
"dependencies": {},
"description": "state management in less than 1 Kb",
"standard-version": {
"scripts": {
"precommit": "documentation build src/core.js -f html -o docs"
}
},
"bundlesize": [
{
"path": "./dist/core.js",
"maxSize": "1Kb"
}
]
}