This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "nuo",
"version": "1.1.0",
"description": ":two_hearts: Lightweight promise polyfill. A+ compliant. Implements notify, progress, and finally.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"dist",
"es"
],
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "node --harmony ./cli/build",
"build:es": "flow-remove-types src/ --out-dir es/",
"lint": "eslint --fix --max-warnings 10 ./src",
"start": "jest -c ./test/jest.config.js --watch --no-cache",
"test": "jest -c ./test/jest.config.js",
"test:es": "jest -c ./test/jest.config.es.js",
"test:cjs": "jest -c ./test/jest.config.cjs.js",
"release": "bash ./cli/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossjs/nuo.git"
},
"keywords": [
"promise",
"promise-polyfill",
"ES2015",
"promises-aplus",
"notify",
"progress",
"finally"
],
"author": "crossjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/crossjs/nuo/issues"
},
"homepage": "https://github.com/crossjs/nuo",
"dependencies": {
"core-js": "^2.5.7"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "3.9.0",
"eslint-config-plato": "^0.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"flow-bin": "^0.76.0",
"flow-remove-types": "^1.2.3",
"jest": "^23.4.1",
"promises-aplus-tests": "^2.1.2",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-flow": "^1.1.1",
"uglify-js": "^3.4.5"
}
}