-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.76 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
{
"name": "ng-set-state",
"version": "3.0.1",
"description": "A library that helps developing UI (e.g. Angular or React) components in a more functional style where UI logic is representing as a series of immutable state transitions.",
"main": "dist/index.js",
"es2015": "dist/index.es2015.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c --bundleConfigAsCjs && rollup -c rollup.config.es2015.js --bundleConfigAsCjs && npm run cp_publish",
"test": "jasmine-ts --config=./jasmine.json --project spec/tsconfig.json",
"build_for_demo": "npm run build && npm run cp_publish_to_demo",
"cp_publish": "rimraf tmp_publish && cpx \"./dist/**/*.*\" tmp_publish/dist && cpx \"./{package.json,LICENSE,CHANGELOG.md,README_NPM.md}\" tmp_publish && node -e \"require('fs').rename('tmp_publish/README_NPM.md', 'tmp_publish/README.md', function(err) { if (err) console.log(err); })\"",
"cp_publish_to_demo": "rimraf demo/node_modules/ng-set-state && cpx \"./tmp_publish/**/*.*\" demo/node_modules/ng-set-state"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x1000000/ngSetState.git"
},
"keywords": [
"set state",
"state",
"react",
"angular"
],
"author": "Dmitry Tikhonov",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x1000000/ngSetState/issues"
},
"homepage": "https://github.com/0x1000000/ngSetState#readme",
"devDependencies": {
"@types/jasmine": "^3.5.0",
"core-js": "^3.27.2",
"cpx": "^1.5.0",
"jasmine": "^3.5.0",
"jasmine-ts": "^0.3.0",
"nyc": "^15.1.0",
"rollup": "^3.11.0",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"rxjs": "^7.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}