-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.15 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
{
"name": "react-moment-proptypes-tests",
"version": "1.0.0",
"description": "Test suite for react-moment-proptypes",
"main": "index.js",
"scripts": {
"test": "node test/puppeter-test-run.js",
"test-all": "npm run test-1.6 && npm run test-1.7 && npm run test-latest",
"test-1.6": "rm -Rf ./node_modules/moment/ && npm i [email protected] && npm test",
"test-1.7": "rm -Rf ./node_modules/moment/ && npm i [email protected] && npm test",
"test-latest": "rm -Rf ./node_modules/moment/ && npm i moment@latest && npm test",
"cpy-test-framework": "cp -R ./node_modules/{mocha,chai,sinon} ./lib/",
"cpy-test-src": "cp ./node_modules/react-moment-proptypes-browser-build/lib/react-moment-proptypes.js ./lib/react-moment-proptypes.js"
},
"keywords": [
"react-moment-proptypes",
"tests",
"browser"
],
"author": "Caleb Morris",
"license": "MIT",
"dependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"moment": "^2.20.1",
"react-moment-proptypes": "^1.6.0",
"react-moment-proptypes-browser-build": "^0.6.0",
"sinon": "^4.1.2"
},
"devDependencies": {
"chalk": "^2.3.0",
"puppeteer": "^0.13.0"
}
}